Extracts design decisions into design tokens from Figma using the Figma Web API
- Go to Figma and generate a new personal access token (Found under your account settings)
- Add an
.env
file in the root offigma-broker
or if you are using Codespaces, go toGithub Settings
→Codespaces
and create a new secret. Give it the nameFIGMA_TOKEN
, paste your token as value, and selectequinor/design-system
in the repository access select menu. If you use Gitpod, typeeval $(gp env -e FIGMA_TOKEN=your-token)
in the terminal. Skip the$
if you’re using Fish. - Set
FIGMA_TOKEN
env variable to the new personal access token - Run
pnpm install --filter=./scripts/figma-broker
from root
- Run either
tokens
orassets
script with afileId
and/or flag for forcing to fetch new data from Figma.
The fileId
for any figma file can be found in the url, after https://www.figma.com/file/<fileId>
when opened in a browser.
https://www.figma.com/file/0bGXR2sCwMVSDNyyzu5BXrO5/UI%E2%80%94User-Interface?node-id=0%3A1
☝
fileId
pnpm export:tokens -- true # Fetches new data from Figma
pnpm export:tokens # Reads local figma json file
Components in Figma (Buttons, Tables, Input etc…) are built using tokens as building blocks. For example, a button can be built up of shape, typography, spacing and colors tokens.
Figma broker exports the result of this union of tokens and lets Figma be in charge of upholding inheritance from tokens as its the single source of truth. Exporting which tokens a component is built up of and patching this together is more complex and intensive so no point in doing when figma already does this for you.
{
blendMode: 'NORMAL',
color: { a: 1, b: 0, g: 0, r: 0 },
opacity: 0.4000000059604645, // optional
type: 'SOLID',
}
Figma provides colors and alpha as RGBA percentages. Figma broker convert these to RGBA decimals for further for conversion to the other color spaces.
Currently implemented color spaces:
RGBA
HSLA
HEX
(HEXA is implemented, but disabled due to lacking support)
Opacity is defined in either a seperate opacity
property or in the alpha channel. Figma broker picks opacity from opacity
if presenten, else alpha channel.
{
fontFamily: 'Equinor',
fontPostScriptName: 'Equinor-Bold',
fontSize: 32,
fontWeight: 700,
letterSpacing: 0,
lineHeightPercent: 128,
lineHeightPercentFontSize: 150,
lineHeightPx: 48,
lineHeightUnit: 'PIXELS',
textAlignHorizontal: 'LEFT',
textAlignVertical: 'TOP',
}
Figma provides typography in pixel and percent values. Figma broker converts typography to rem
and em
values using a default font size declared in functions/units
export const rootFontSize = 16