SD Prompt syntax
Adjusting Prompt Weight with Syntax
Note: This syntax applies specifically to Stable Diffusion (SD) and SDXL. Other AI models may use different weighting formats.
1. Increasing Weight: ()
Use parentheses to emphasize a tag, making it more prominent in the generated image.
Nesting Syntax: Nesting parentheses increases weight exponentially.
(keyword)=((keyword))=(((keyword)))=
Explicit Weight Syntax: You can also define exact numerical values directly, such as
(keyword:1.1)or(keyword:1.25).
2. Decreasing Weight: []
Use brackets to de-emphasize a tag, reducing its influence without removing it entirely.
Nesting Syntax: Nesting brackets reduces weight exponentially.
[keyword]= (Equivalent to(keyword:0.9))[[keyword]]=[[[keyword]]]=
Quick Reference Table
Syntax
Type
Multiplier
Explicit Equivalent
(((keyword)))
Strong Emphasis
(keyword:1.33)
((keyword))
Medium Emphasis
(keyword:1.21)
(keyword)
Light Emphasis
(keyword:1.1)
keyword
Neutral
(keyword:1.0)
[keyword]
Light De-emphasis
(keyword:0.9)
[[keyword]]
Medium De-emphasis
(keyword:0.81)
[[[keyword]]]
Strong De-emphasis
(keyword:0.73)
Last updated