Paragraph Spacing - Token Type
Paragraph Spacing Tokens define the vertical distance between 2 paragraphs of text as an individual property to be composed within a Typography Token. It is not intended to be applied to text elements directly.

Design decisions
Tokens Studio added support for Paragraph Spacing to accommodate Figma's unique way of handling text styles. They use this property to define the vertical distance between 2 paragraphs of text.
This isn't a typical CSS property; you could define it by adding a margin to your paragraphs.
When we apply a Typography Composite Token to a text layer in Figma, these Paragraph Spacing values will change the text layer:
Preferred value -
0
No additional space between paragraphs.
A line break would be added to create the space needed instead.
This most closely matches how spacing between paragraphs would be done in code.
Relative to Font Size -
value in rem units
Example: Paragraph Spacing at
0.5rem
with Font Size at1rem
A person who has increased the font size of a mobile phone will see the space between paragraphs half the size of the text.
Fixed -
value in pixels
Example
8px
The space between paragraphs will remain the same as a user zooms into a webpage.
Paragraph Spacing Tokens can be attached to Number Variables in Figma.
Jump to the guide on Exporting Tokens to Figma by selecting the card below to learn more.
Export to Figma GuidePossible values
Like all Tokens defining a dimension design decision, the value of a Paragraph Spacing Token must include a numeric value and, ideally, a unit of measure.
Tokens without a unit specified are applied as the pixel equivalent in Figma.
Hard-coded values
When writing the hard-coded values for a Paragraph Spacing Token, you'll want to:
Avoid spaces
Include a number and unit of measure.
Values without a unit will be translated to pixels in Figma.
The value should always be greater than 0.
Or use the specified string (below) for the
normal
value.
rem units (rem)
To support responsive design, you can define your Paragraph Spacing Token in rem units, and the plugin automatically converts the value to the pixel equivalent when the Typography Composite Token is applied to the text element in Figma.
For example, a Paragraph Spacing Token with a value of 1rem
, when applied as a Typography Composite Token, will appear as 16px
in Figma.
Rem Units act as a multiplier of the base font size, so when a user changes their preferences to a larger font size or uses a zoom feature in your product, elements defined in rem units will respond accordingly.
The value of 1rem
can be configured in the plugin settings for Base Font Size.
Pixel units (px)
While its not common, should you require the space between every paragraph to remain static even when users change their preferences, the Paragraph Spacing value can be defined in pixel units. For example:
16px
Values that reference another Token
When trying to reference another Token as the Value for a Paragraph Spacing Token, you will see Tokens in the dropdown list that are:
Living in Token Sets that are currently active.
In the left menu on the plugin's Tokens page, a checkmark is visible next to the Token Set name.
Token Type is compatible:
The same =
paragraphSpacing
dimension
number

However, like all Token Types, you can "force" a reference by manually entering the Token Name between curly brackets.
For example {token.name.here}
Jump to the guide on Token Values with References by selecting the card below to learn more.
Token Values with ReferencesW3C DTCG Token Format
Paragraph Spacing is not an official token type in the W3C Design Token Community Group specifications.
Tokens Studio has added Paragraph Spacing as an unofficial Token Type to support Figma's unique approach to this text property.
Transforming Tokens
Engineers typically transform Tokens used in code with Style Dictionary, which is tool-agnostic. Tokens coming from Tokens Studio require an additional step: @Tokens-studio/sd-transforms, an npm package that prepares Tokens for Style Dictionary.
When transforming Paragraph Spacing Tokens, there are specific configurations to be aware of.
The preprocessor in the SD-Transforms package will automatically convert the Tokens Studio specific Token Type of paragraphSpacing
to align with the DTCG Format Token Type of dimension
.
→ SD-Transforms Read-Me Doc, Using the preprocessor
Paragraph Spacing, as part of Typography Composite Tokens, requires the SD-Transforms option to expand composite Tokens into multiple Tokens
.
Make sure you look at the generic SD-Transforms package to include this option, which allows you to further customize this transformation further using Style Dictionary.
→ SD-Transforms Read-Me Doc, Using Expand
Resources
Mentioned in this doc:
SD-Transforms - Read Me
Style Dictionary - https://styledictionary.com/
Design Tokens Community Group - W3C Draft
Design Tokens Community Group - 9.7 Typography
Figma resources:
Design in Figma - Explore Text Properties, Paragraph Spacing
CSS resources:
MDN Web Docs - The paragraph element
Community resources:
None yet!
💡 Something to share? Submit it here!
Known issues and bugs
Tokens Studio Plugin GitHub - Open issues for Token Type Paragraph Spacing
None yet
🐞 If you are experiencing an issue not listed here, please reach out to us on the Troubleshooting channel of our community Slack, submit it on our feedback tool, or send us an email [email protected]
Requests, roadmap and changelog
None
💌 Visit https://feedback.tokens.studio/ to contribute or subscribe to updates.

Last updated
Was this helpful?