Styler Pipeline (Single)
The single-shot styler
- positive
- negative
- clip
- positive
- negative
- style
Sometimes you don't want a panel and you don't want twenty-four dropdowns. You want "give this character a Bleak mood" or "make it Cyberpunk" and then get on with your life. That's Styler Pipeline (Single): two dropdowns, one style, done. It's the smallest styler in the pack and the one I reach for when I'm iterating on a single look rather than stacking a whole scene.
How it works
Pick a category (24 of them, from aesthetic to timeofday), pick a style, and the node encodes that style's text with your clip, scales it by strength, repeats it redundancy times, and appends the tokens onto your existing positive and negative conditioning. Same injection mechanism as the big Dynamic Styler - this is just the no-frills version that applies exactly one template.
The neat bit is the second dropdown. The style widget is populated dynamically: when you switch category, a bit of JavaScript in the pack refetches the style catalog and repopulates the style list to match. It defaults to aesthetic's 49 styles, but swap to camera_angles and you get shots, swap to clothing and you get garments. The node even tells ComfyUI to skip normal input validation so the dynamic dropdown can't break the workflow.
The inputs that matter
category- the group to pick from.style- the specific style; list changes with the category.strength(FLOAT, 0–3, default 1.0) andredundancy(INT, 1–4, default 1) - same dials as the rest of the pack. 1.0/1.0 to start, keep redundancy at 2 or below.positive/negative(CONDITIONING) andclip(CLIP) - and noteclipis required here. Leave it unconnected and the node raises a "CLIP input is required" error rather than silently passing through.
Outputs are positive, negative, and style - a STRING with the applied style name. That third output is the sleeper feature: wire it into a text widget or filename suffix and you always know which style a render used, which gets genuinely useful once you're running test grids.
Installing it
Same story as the rest of the pack - it's one of five nodes in andreszs' ComfyUI-Styler-Pipeline. No dependencies, no model downloads, no API key.
cd ComfyUI/custom_nodes
git clone https://github.com/andreszs/ComfyUI-Styler-Pipeline
Restart ComfyUI and it lives under Styler Pipeline/. ComfyUI Manager works too - search "Styler Pipeline". The pack is single-maintainer and still young, so if Manager doesn't list it, clone by hand.
Where it's a trap
The one real footgun: it applies a single style, so it's easy to forget that your earlier styler (or your prompt itself) is still contributing. This node layers onto whatever conditioning you feed it - it doesn't replace anything. And like every styler here, camera_angles is the category most likely to fight your prompt or ControlNet pose, because it steers composition rather than mood. If a render comes out looking nothing like the style you picked, check whether a conflicting category is still wired in upstream.
Inputs (7)
| Name | Type | Default | Description |
|---|---|---|---|
| positive | CONDITIONING | — | |
| negative | CONDITIONING | — | |
| category | COMBO | 24 options: aesthetic, all_in_one, anime, atmosphere, camera_angles, clothing, +18 | |
| style | COMBO | 49 options: Art Deco, Art Nouveau, Armored Futurism, Artistic Whimsy, Baroque Opulence, Bauhaus, +43 | |
| strength | FLOAT | 1.000–3 | — |
| redundancy | INT | 11–4 | — |
| clipopt | CLIP | — |
Outputs (3)
| Name | Type | Description |
|---|---|---|
| positive | CONDITIONING | — |
| negative | CONDITIONING | — |
| style | STRING | — |