• Stars
    star
    716
  • Rank 61,676 (Top 2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 6 years ago
  • Updated 11 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Figmagic is the missing piece between DevOps and design: Generate design tokens, export graphics, and extract design token-driven React components from your Figma documents.

Figmagic cover art

Figmagic

Build Status

FOSSA Status

Quality Gate Status

CodeScene Code Health

CodeScene System Mastery

codecov

Maintainability

All Contributors

Figmagic is the missing piece between DevOps and design: Generate design tokens, export graphics, and extract design token-driven React components from your Figma documents.

🏕️ Kumbaya, friends. Figmagic automates the world into a better place, but does not attempt to completely remove designers or developers: It just aims to move them closer, while eliminating most of the tedious busywork that has grown around front-end development.

Built initially as an internal handoff tool for Humblebee.


Product vision 🔮

Interested in understanding the vision for Figmagic? Then you should read the product vision.


Translations 🗺️

You can also read this README in the following languages:


Announcements

Version 4.5.0 enables using frames as well as groups for generating components from Figma

See more on the version 4.5.0 release page.

Version 4.4.0 outputs all files on disk (and imports) as PascalCase

When files (and Elements) are written to disk these now use a PascalCase format. This is partly because recent versions have also started to accept dashes and underscores in names, for example for Elements and tokens named things like my-design-system-button, which would be transformed into MyDesignSystemButton.

To ensure that files and imports have usable and working names, the decision was made to add a string transformer to the file output stage.

This may break stuff on your end if you were dependent on the previous, non-transformed format.

Version 4.3.0 introduces new handling of trashed/replaced files

Previous versions in the 4.0 series have been using trash to handle files that need to be replaced. In 4.3.0 this is no longer the case.

Any deleted files are now permanently destroyed by the Node native fs module.

Versions 4.3.0 and 4.3.1 used a flaky dual-mode, configurable pattern where you could use either a "hard" or "soft" delete mode (soft deletes meaning placing files in a local trash folder). This is NOT supported and intended from 4.3.2 and forward as that was too buggy.


Requirements

Please note: Figmagic requires that your document structure follows the conventions in this document; a full setup can be seen in the template at https://www.figma.com/community/file/821094451476848226/Figmagic-%E2%80%94-Design-System-for-Tokens.

Figmagic is compiled from Typescript to ES6, so you should have Node 12 or later (Node 14 and newer recommended) for it to work on your machine.


Introduction

Figmagic promotes a structured way of assembling design systems

Figmagic is a very straightforward, super-flexible command-line tool that helps you do three things well:

1. Output design tokens

Outputting and using design tokens aids in designing with a structured approach. These tokens are completely platform agnostic when output into JSON, or for most web developers, more readily useable in various supported flavors of JavaScript (TS, JS, MJS). It's web-oriented but works well with React Native too.

A basic set of tokens can look like this:

const tokens = {
  colors: {
    blue: 'rgba(20, 20, 255, 1)',
    warmWhite: 'rgba(240, 240, 240, 1)'
  },
  spacing: {
    small: '1rem',
    medium: '1.5rem'
  }
};

You use these tokens like so, color: ${colors.blue};, to shape and specify your coded components, web sites, apps, and what have you, instead of hard-coding every single value.

This way, you decouple implementation from data. You can now easily drive changes as design choices through Figma instead of as code changes.

2. Output graphics

Say goodbye to ever manually exporting graphics from Figma again. Grab your graphics as PNG, SVG, as React components with inlined SVG, or as objects that export all graphics from a single file.

3. Generate React components

Figmagic also allows you to generate React components from Figma components that follow a specific formal structure. It's best at fairly low-level components that you can piece together to make more complex organisms on your own. You can significantly cut down on boilerplate churn and scaffolding time with Figmagic.

And, no, the code actually doesn't suck! This was my own biggest gripe with services promising this functionality, so I knew it had to be good, or at least tolerable. Therefore Figmagic supports things like actually using your own tokens (so we can cut down on hard-coded garbage, unless matches aren't found) and you can completely customize the number of related generated files.

While not perfect, it's definitely better than many things I've seen, made by big companies. All of this is explained later here in the docs.

The arguments

Here are a few reasons you'd want to use Figmagic rather than anything similar:

  • In Figmagic, design tokens are a first-class concept since day 1
  • Figmagic is designer-driven, since Figma is seen as the source of truth
  • Figmagic is automatable and very lightweight (~45kb compressed), with no external dependencies
  • Figmagic is developer-friendly and makes very few assumptions on your use and/or setup and supports a range of output formats plus that it's extensible through custom templates if you need something completely different
  • Figmagic is open-sourced under the MIT license and has a long track record of very short implementation cycles for new features/fixes
  • Generated React components bind to any token values you've defined so these are equally useful as starter code or as code you continually output

Additional documentation sources

The Figmagic developer docs are auto-generated on every push and can be found at the dedicated documentation site.

For deeper information pertaining to Figmagic Elements and syncing them, see the dedicated README page.

The Figmagic ecosystem

In addition to Figmagic itself, there are several more repos/projects around Figmagic:

  • figmagic-example: This repository is a demo of Figmagic. In this project you're going to see how a project running Webpack, React and Styled Components might use tokens. See more below!
  • figmagic-action: Figmagic GitHub action. Use Figmagic to retrieve tokens, graphics, and/or React components from a Figma document.
  • demo-figmagic-action: Demo of the above GitHub action.
  • figma-plugin-continuous-design: Continuous Design is a Figma plugin that lets you run GitHub Actions, Bitbucket Pipelines, and Azure DevOps Pipelines from Figma.
  • automator-figmagic: Mac OS X Automator service for Figmagic.

Example project

An example project—using React, Styled Components and Storybook—is available at https://github.com/mikaelvesavuori/figmagic-example.

Note that this demo is not meant to fully style and do all of the things in the Figma document. I wanted to straddle a middle-of-the-road solution where I did the least work possible to get it working with React and style only a few of the most obvious and helpful elements, like setting disabled state on the button and checkbox.

Figmagic Example Demo

Figmagic Example Demo: On the left is a big Figma component assembled of a number of "Elements", Figmagic-compliant components that can be output into code. On the right is the React-composed version of those after just a few minutes of coding and closing elements correctly.

Using Figmagic

Installation

Global (recommended)

Run npm install -g figmagic or yarn global add figmagic.

Local

Local usage is possible by installing Figmagic as a developer dependency (under devDependencies) with npm install figmagic -D or yarn add figmagic -D, then using a script pointing to the local version, like so:

"scripts": {
  "figmagic": "npx figmagic"
}

Create configuration file (figmagic.json or .figmagicrc)

Figmagic can be run without any configuration. You will always need to specify your Figma API token and Figma document ID, though! However, it's highly recommended to add a configuration: it's easy and gives you a ton of possibilities to optimize for your own needs.

Run figmagic init to initialize a basic configuration file, either named figmagic.json or .figmagicrc file. As long as you provide your Figma token and document ID/URL, the new generated file is ready to use for Element Sync which can only be done if your configuration points to valid code generation templates (which the generated one does). You'll see that the config will point templates.templatePath{Graphic|React|Styled|Storybook} to ./node_modules/figmagic/templates/{graphic|react|styled|story}. Read more under the Configuration file section.

Running Figmagic

First of all, get your Figma API token and Figma URL:

  • Get your file ID by right-clicking your Figma tab inside of the app and click Copy Link—the first, long junk-looking bit is the ID.
  • For more on API keys, go to Figma's developer docs.

Pass in your Figma API token and Figma URL by either:

  • Stepping into your project directory (where you want Figmagic to run), and add or replace FIGMA_URL and FIGMA_TOKEN in a .env file with your own file ID (i.e. similar to 821094451476848226) or full Figma URL (i.e. similar to https://www.figma.com/file/821094451476848226/Figmagic-%E2%80%94-Design-System-template-4.0) and API token key.
  • Passing in API token and URL through the CLI, like this figmagic --token {TOKEN} --url {URL} (substitute curly braces for your actual values)
  • Setting them in figmagic.json/.figmagicrc under token and url. This is discouraged since you will display these values in clear text and you probably don't want that.

Then:

  • Run figmagic
  • You should now have a folder with the raw JSON dump (default: /.figmagic) and a folder with tokens (default: /tokens) in the root

Folders

Folder names below follow their default naming. The naming is possible to change via configuration.

  • .figmagic will contain the extracted JSON retrieved from Figma's API
  • tokens will contain the token files
  • elements will contain the generated code
  • graphics will contain graphics

For a more complete description of the code structure, see the Code structure section.

Preparing Figma for Figmagic usage

Easy solution: Copy the public Figmagic design system template from Figma Community

Go to https://www.figma.com/community/file/821094451476848226/Figmagic-%E2%80%94-Design-System-for-Tokens and make your own copy. Go at it by using the document ID as the FIGMA_URL or start copying in your own work.

Less easy solution: Start from scratch

Your structure needs to correspond to the following:

  • A Page needs to exist, called Design tokens. Without this page you can't really do much with Figmagic.
  • Further, inside the Design tokens page, frames need to exist. You can have any number of supported token frame. For starters, name them Colors, Font sizes, Font families, Font weights, Line heights, and Spacing – exact casing is not important, however the spelling is important! For a full list of token types, see the types of design tokens Figmagic can extract.
  • All items on a page need to be contained within one or more frames.
  • Want element syncing? Then create an "Elements" page and place any components there. For the generation to work correctly, you need to stay within the limits specified above.

See a template design system at https://www.figma.com/community/file/821094451476848226/Figmagic-%E2%80%94-Design-System-template-4.0. Feel free to simply copy-paste it or base your own work around it.

Note: Refer to the document structure in the image below and in the template linked above.

Figma Document Structure: Tokens

How a Figmagic project could be structured in regards to tokens, if you want to support all currently available token types.

What are Design Tokens?

Design tokens are the abstract and shared elements from which your design system is built.

Design tokens express any of the individual values that you build from, such as colors, spacing, and typographic features.

Tokens offer a form of “contract” between a designer’s intent and its fulfillment by developers. This means that both sides agree to treat the individual parts of a complete design through the tokens that represent those values. As a format, they are super easy to read and understand and are adaptable for consumption by many types of systems or applications. That’s very important as you start doing cross-platform apps and things like that.

Design tokens

Tokens ensure that values are not magic numbers or ”just picked at random”. This makes communication precise and effortless. Creating actual code for components, even complex ones, also becomes a lot less of a bore, since what you are doing is just pointing stuff like padding, Z indices, and anything else to their token representations.

However: You may still want to add written guidance for usage. It’s just that the tokens should be able to be consumed without understanding anything specific about them.

You should bind tokens to Figma styles whenever and wherever possible to simplify your own design work, but make sure that those are also represented in the Tokens page, as this page is where a developer will pick up tokens with Figmagic.

The types of design tokens Figmagic can extract

You can currently extract design tokens for:

  • Colors (including linear and radial gradients, though note: linear gradients which are not using straight angles will get an incorrect calculation)
  • Font Sizes
  • Spacing
  • Font Weights
  • Line Heights
  • Font Families
  • Letter Spacings
  • Z Indices
  • Radii
  • Border Widths
  • Shadows (currently supports single/multiple Drop Shadows; see caveat below)
  • Opacities
  • Durations (for animations)
  • Delays (for animations)
  • Easing functions (for animations)
  • Media Queries

A typical use-case for the generated documents is to feed the extracted values into CSS systems that support external values (such as Styled Components, Emotion, Styled System, any other CSS-in-JS libraries, or maybe even Sass).

Note on shadows

From alehar9320 commenting on issue 111:

Figma calls everything Drop-shadow, while translating the design into box-shadow or drop-shadow CSS dependent upon whether it's a ~ shape or a vector graphic. See blog post from the Figma developer who built the feature.

This means that if Figmagic is used to define shadow tokens, it should be recommended to only have one drop-shadow definition per rectangle. To maintain compatibility with both drop-shadow and box-shadow CSS. The exception would be if there is a clear distinction between tokens to be used with box-shadow and drop-shadow. As drop-shadow can only accept a single shadow parameter. Any token that has two values will simply be incompatible with drop-shadow.

Working with Figmagic as a designer

Figma styles

Figma styles became publicly available in June 2018 and are incredibly valuable for designers to create single-sources-of-truth when it comes to design values (tokens). When using Figmagic though, the thinking and usage is a bit different from how Figma styles work.

Unidimensional or multidimensional values

A Figma style is multidimensional: It contains any number of properties wrapped into one style, acting as kind of a package. This is handy in a design environment and is practical from a user standpoint. The user doesn't have to think too hard about storing "redundant" values that are the same in another component, such as N number of units for line height: They are all taken care of.

Figmagic instead expresses tokens as instances of every individual value, thus being unidimensional – meaning they store only one value per item. Examples could be sets of line heights, font weights, or font sizes, each one individually specified. What this entails for they developer and designer, is that values can be used and mixed as pleased in any number of contexts, not becoming bound to one specific context such as a certain kind of heading. For a developer this is good because we would rather just map out the definitive values for something, onto a component (a "context" so to speak).

Because of this difference, the appropriate way to structure a Figmagic-compatible Figma design document is to display one or more items/tokens in the respective frames that correspond to the accepted token types (line height, font size...) where each item has only one key property that's changed in-between them (such as one text using size 48, the next using size 40...), since those items are what Figmagic loops through when creating your code tokens.

One of the major deviations from this principle is "Fonts" where you can specify more properties than one. However, then those need to individually match other typographical tokens you might have, such as line heights.

Nesting: Button, Normal

The "Heading L" font token is composed of values that are also represented in the "lesser" uni-dimensional tokens: displayed here are "Line Height S" (135% line height), "H1" (size 48), and "Font Bold" (Bold font style). Setting this font as a Figma Style will make your life as a designer much easier as your apply the text style to things. Auto-generating code with Figmagic will also work just fine, since the individual values are respected.

OK, but should I use Figma styles (also) when using Figmagic?

Whatever suits you! As long as you remember that what Figmagic fetches are those single (unidimensional) values from each design item/token it should all work. I've seen that Figma styles make the "contract" between tokens and their day-to-day workflow with designers a lot easier. Again though, Figmagic does not use those values; think of them as a convenient glue.

Configuring Figmagic

Token Sync

By default this is turned on. You will need to have a page named "Design tokens", where your tokens lay within named frames.

Tokens are the "bread and butter" of Figmagic. Without tokens, Figmagic cannot create elements. And even without elements, tokens provide the core experience to help you run a competent design system with code.

In case you want to skip generating tokens for a given frame, you can just add a leading underscore to the frame name. You can also skip individual items by naming them ignore or adding a leading underscore.

This is activated by default, but it's now possible to deactivate it if you have very specific reasons to do so.

Graphics Sync

By default this is turned off. Pass in --syncGraphics as a flag to sync them or enable that in your configuration file. You will need to have a page named "Graphics", where your components lay directly on the artboard.

Graphics can be exported in multiple formats with Figmagic. Instead of doing manual hand-overs, just tell your developer(s) that there have been updates to the graphics and let them pull the latest versions from your Figma document.

After version 4.4.6, you can either place graphics as Figma components right into the Graphics page, or nest them into frames.

Again, please look at the template at https://www.figma.com/community/file/821094451476848226/Figmagic-%E2%80%94-Design-System-for-Tokens for reference.

Element Sync

This is also turned off by default. Pass in --syncElements or enable it in your configuration file to generate code from your Figma components.

Upcoming versions of Figmagic may attempt to support Figma Variants, but that will have to be publicly released first, and then vetted against what Figmagic can generate before I commit to supporting that model. Until then, the existing mental model of "Elements" will continue to be used.

Elements are named so because they are primarily meant to help scaffold anything that maps to standard HTML elements like input, button, h1, and form. With scaffolding we mean that these elements can be generated as code in a shape that is fitting for continued development. Elements are a good entry-point both for design and for code generation, since they are relatively simple and as a concept map to HTML, which in turn is based on tags ("elements").

Elements are generated by parsing your structured Figma components into either "flat" or "nested" varieties. Any values, say a height of 48px and a specific blue color, will try to be derived from your relevant tokens. Therefore, without tokens, elements cannot be generated! In this example, maybe the height will map to a spacing token that uses 48px (mapping to 3rem where 3 x 16 = 48, with 16 being the root REM value) and the color might be mapped to a color in your color tokens.

If you need more information and guidance on this, see the dedicated documentation section at Figmagic Element Sync.

How user settings are propagated

There are several ways in which you can provide Figmagic with knowledge about how you want it to parse your tokens. You can combine them, but beware of the below prioritization chart (from lowest to highest):

  1. User-provided configuration from figmagic.json/.figmagicrc file
  2. Environment variables (also loaded from .env file)
  3. Command-line arguments and flags

If possible, stick to one way of providing settings.

Non-provided values will fall back to defaults outlined in bin/entities/Config/baseConfig.ts.

Configuration file (figmagic.json or .figmagicrc)

You can use a JSON-formated configuration file at the root of a project to use its settings. Figmagic will pick up the path by assessing the current working directory and looking for either a figmagic.json or .figmagicrc file there. If it finds it, it will use it.

An example file is provided in Figmagic—you can find it in the root of the project. The file is named figmagicrc, just add the leading dot and place the file in your own project folder to use it. To use it as JSON, add json as the file ending.

Since this is a configuration file, you'll need to be careful to write it correctly or you may end up with failures and errors.

Below is a complete set of what you can configure, together with the defaults.

{
  "debugMode": false,
  "camelizeTokenNames": true,
  "borderWidthUnit": "px",
  "fontUnit": "rem",
  "letterSpacingUnit": "em",
  "lineHeightUnit": "unitless",
  "opacitiesUnit": "float",
  "durationUnit": "s",
  "radiusUnit": "px",
  "shadowUnit": "px",
  "figmaData": "figma.json",
  "figmagicFolder": ".figmagic",
  "outputFolderElements": "elements",
  "outputFolderGraphics": "graphics",
  "outputFolderTokens": "tokens",
  "outputFormatColors": "rgba",
  "outputFormatCss": "ts",
  "outputFormatDescription": "md",
  "outputFormatElements": "tsx",
  "outputFormatGraphics": "svg",
  "outputFormatStorybook": "js",
  "outputFormatTokens": "ts",
  "outputGraphicElements": false,
  "outputGraphicElementsMap": false,
  "outputScaleGraphics": 1,
  "outputDataTypeToken": null,
  "overwrite": {
    "css": false,
    "description": false,
    "graphic": false,
    "react": false,
    "storybook": false,
    "styled": false
  },
  "recompileLocal": false,
  "refreshType": "soft",
  "remSize": 16,
  "skipFileGeneration": {
    "forceUpdate": true,
    "skipCss": false,
    "skipDescription": false,
    "skipReact": false,
    "skipStorybook": false,
    "skipStyled": false
  },
  "spacingUnit": "rem",
  "syncElements": false,
  "syncGraphics": false,
  "syncTokens": true,
  "templates": {
    "templatePathGraphic": "templates/graphic",
    "templatePathReact": "templates/react",
    "templatePathStorybook": "templates/story",
    "templatePathStyled": "templates/styled"
  },
  "token": "",
  "unitlessPrecision": 2,
  "url": "",
  "usePostscriptFontNames": false,
  "useLiteralFontFamilies": false,
  "versionName": null
};

CLI arguments

Run these in your command line environment of choice.


Toggle debug mode

figmagic [--debug | -d]

Default: false.


Do not transform ("camelize") token names

figmagic [--noCamelizeTokenNames | -cml]

Default: true.

The Figmagic default has always been to camel-case ("camelize") token names, so that for example kebab-case-word becomes kebabCaseWord.

From version 4.3.7, you can now also opt-in to have no transforms applied to your token name. The name will still be sanitized, and only dashes and underscores will be valid special characters, but this will be something you'd want to use if casing is very important to you. An example could be $my-design-system-error500 which would end up being my-design-system-error500.


Switch border width unit

figmagic [--borderWidthUnit | -bwu] [px|rem|em]

Default: px.


Switch radius unit

figmagic [--radiusUnit | -ru] [px|rem|em]

Default: px.


Switch shadow unit

figmagic [--shadowUnit | -su] [px|rem|em]

Default: px.


Switch font unit

figmagic [--fontUnit | -fu] [rem|em|px]

Default: rem.


Switch letter-spacing unit

figmagic [--letterSpacingUnit | -lsu] [em|px]

Default: em.


Switch line-height unit

figmagic [--lineHeightUnit | -lhu] [unitless|em|px|rem]

Default: unitless.


Switch opacities unit

figmagic [--opacitiesUnit | -ou] [float|percent]

Default: float.


Switch duration unit

figmagic [--durationUnit | -du] [s|ms]

Default: s.


Switch spacing unit

figmagic [--spacingUnit | -s] [rem|em|px]

Default: rem.


Switch CSS file format

figmagic [--outputFormatCss | -fc] [ts|mjs|js]

Default: ts.


Switch description file format

figmagic [--outputFormatDesc | -fd] [md|txt]

Default: md.


Switch elements file format

figmagic [--outputFormatElements | -fe] [tsx|jsx|mjs|js]

Default: tsx.


Switch graphics file format

figmagic [--outputFormatGraphics | -fg] [svg|png]

Default: svg.


Switch Storybook file format

figmagic [--outputFormatStorybook | -fs] [ts|js|mdx]

Default: js.


Switch token file format

figmagic [--outputFormatTokens | -ft] [ts|mjs|js|json]

Default: ts.


Switch color format

figmagic [--outputFormatColors | -fcol] [hex|rgba]

Default: rgba.

This only applies to solid colors; gradients will still use RGBA colors.

Hex color support may potentially interfere with element generation and binding to tokens, since RGB(A) is the format that Figma itself uses, so there is a slight possibility of mismatches in the Figmagic binding process.

Note that hex colors will not use any alpha/transparency!


Set output file name

figmagic [--figmaData | -file] [filename]

Default: figma.json.


Set Figma base file output folder

figmagic [--figmagicFolder | -base] [folder]

Default: .figmagic.


Set elements output folder

figmagic [--outputFolderElements | -elements] [folder]

Default: elements.


Set graphics output folder

figmagic [--outputFolderGraphics | -graphics] [folder]

Default: graphics.


Set token output folder

figmagic [--outputFolderTokens | -tokens] [folder]

Default: tokens.


Output graphics as wrapped React elements

figmagic [--outputGraphicElements | -oge]

Default: false.


Output graphics elements map

figmagic [--outputGraphicElementsMap | -ogm]

Default: false.


Set output scale of graphics

figmagic [--outputScaleGraphics | -scale] [number]

Default: 1.

Note that from the CLI you must specify the scale size like 3x (or anything at the end, as long as it includes a letter at the end). This only applies to CLI configuration, and does not apply to other types of config, such as through figmagic.json or .figmagicrc.


Set output token data type

figmagic [--outputDataTypeToken | -tokentype] [null | enum]

Default: null.


Overwrite files

This is not currently possible to adjust from the CLI.


Recompile data from local Figma JSON file

figmagic [--recompileLocal | -local]

Default: null, and will then be taken from local .env file if not explicitly passed in through the CLI.


Set REM size

figmagic [--remSize | -rem] [number]

Default: 16.

Note that from the CLI you must specify the REM size like 16p (or anything at the end, as long as it includes a letter at the end). This only applies to CLI configuration, and does not apply to other types of config, such as through figmagic.json or .figmagicrc.


Force update all elements

figmagic [--forceUpdate | -force]

Default: true.

Forces all elements and file types to be regenerated.


Skip file generation: CSS

figmagic [--skipCss | -nocss]

Default: false.

Skip creating CSS file when syncing elements.


Skip file generation: Markdown description

figmagic [--skipDescription | -nodesc]

Default: false.

Skip creating Markdown file when syncing elements.


Skip file generation: React

figmagic [--skipReact | -noreact]

Default: false.

Skip creating React file when syncing elements.


Skip file generation: Storybook

figmagic [--skipStorybook | -nostory]

Default: false.

Skip creating Storybook file when syncing elements.


Skip file generation: Styled Components

figmagic [--skipStyled | -nostyled]

Default: false.

Skip creating Styled Components file when syncing elements.


Sync elements

figmagic [--syncElements | -se]

Default: false, and will then be taken from local .env file if not explicitly passed in through the CLI.

Use this when you want to sync elements in your "Elements" page in Figma.


Sync graphics

figmagic [--syncGraphics | -sg]

Default: false, and will then be taken from local .env file if not explicitly passed in through the CLI.

Use this when you want to sync graphics in your "Graphics" page in Figma. Use the RC or configuration file to pass in options. Default format will be SVG.


Sync tokens

figmagic [--syncTokens | -st]

Default: true, and will then be taken from local .env file if not explicitly passed in through the CLI.

Use this when you want to sync tokens in your "Design tokens" page in Figma. Use the RC configuration file to pass in options.


Set path to graphics template

figmagic [--templatePathGraphic | -tpgraphic] [path]

Default: templates/graphic.

Your local figmagic.json or .figmagicrc file must have a block with templates.templatePathGraphic that specifies a valid path, such as ./node_modules/figmagic/templates/graphic.


Set path to React template

figmagic [--templatePathReact | -tpreact] [path]

Default: templates/react.

Your local figmagic.json or .figmagicrc file must have a block with templates.templatePathReact that specifies a valid path, such as ./node_modules/figmagic/templates/react.


Set path to Storybook template

figmagic [--templatePathStorybook | -tpstory] [path]

Default: templates/story.

Your local figmagic.json or .figmagicrc file must have a block with templates.templatePathStory that specifies a valid path, such as ./node_modules/figmagic/templates/story.


Set path to Styled Components template

figmagic [--templatePathStyled | -tpstyled] [path]

Default: templates/styled.

Your local figmagic.json or .figmagicrc file must have a block with templates.templatePathStyled that specifies a valid path, such as ./node_modules/figmagic/templates/styled.


Pass in Figma API token

figmagic [--token | -t] [token]

Default: null, and will then be taken from local .env file if not explicitly passed in through the CLI.


Set relative import path for tokens (for CSS)

figmagic [--tokensRelativeImportPrefix | -tip] [path]

Default: '' (effectively just blank or the same folder). Use this so CSS files can import tokens from the correct location, for example to resolve something like ../../tokens/colors.ts you would pass in ../../ and tokens would be whatever your outputFolderTokens value is.


Pass in Figma URL

figmagic [--url | -u] [url_id]

Default: null, and will then be taken from local .env file if not explicitly passed in through the CLI.


Pass in unitless precision

figmagic [--unitlessPrecision | -up] [number]

Default: 2.

Defines the precision (decimals) for unitless values (rounded using .toFixed() internally).


Set font family name to be Postscript name instead of "common name"

figmagic [--usePostscriptFontNames | -ps]

Default: false, i.e. common name.


Set font families tokens based on the content rather on the font applied to the Figma's frame

figmagic [--useLiteralFontFamilies | -lff]

Default: false, i.e. uses common name or Postscript name applied to the Figma's frame.

That's particularly useful for defining the whole font family stack with the fallbacks instead of a single font name, i.e.: Roboto, BlinkMacSystemFont, Helvetica, Arial, sans-serif

Figmagic Example Demo


Use a versioned Figma document

figmagic [--versionName | -v]

Default: null which will resolve to the latest version. The value you specify here is the name of the version in the Figma file's Version history.


Color themes support

From version 4.5.8, you can also export color themes tokens.

Consider the following example in Figma, as example of an app that allows the user to switch between Dark Theme and Light Themes for enhancing accessibility:

Figma Color Themes Demo

It will translate into the following generated tokens:

const colors = {
  black: 'rgba(51, 51, 51, 1)',
  white: 'rgba(255, 255, 255, 1)',
  red: 'rgba(235, 87, 87, 1)',
  blue8: 'rgba(47, 128, 237, 1)',
  green6: 'rgba(33, 150, 83, 1)',
  darkTheme: {
    emptyShade: 'rgba(51, 51, 51, 1)',
    fullShade: 'rgba(255, 255, 255, 1)',
    mediumShade: 'rgba(189, 189, 189, 1)',
    darkShade: 'rgba(224, 224, 224, 1)',
    danger: 'rgba(248, 102, 102, 1)',
    warning: 'rgba(246, 212, 107, 1)',
    primary: 'rgba(39, 131, 255, 1)',
    success: 'rgba(68, 239, 141, 1)'
  },
  lightTheme: {
    fullShade: 'rgba(51, 51, 51, 1)',
    emptyShade: 'rgba(255, 255, 255, 1)',
    darkShade: 'rgba(130, 130, 130, 1)',
    mediumShade: 'rgba(189, 189, 189, 1)',
    danger: 'rgba(235, 87, 87, 1)',
    warning: 'rgba(242, 201, 76, 1)',
    primary: 'rgba(47, 128, 237, 1)',
    success: 'rgba(33, 150, 83, 1)'
  }
};

Which in a practical example you could use as follows:

// initialize with default theme
let theme = 'lightTheme';

// Primary action button with white color token and with different primary background color according to the theme
let button = `<button style="background: ${colors[theme].primary}; color: ${colors.white}">Primary Action</button>`;

// Background color that changes according to the theme
let panel = `<div style=`color: ${colors[theme].emptyShade}`>Panel background</div>`

Note on Components generation

Please note that component generation using the --syncElements options doesn't support color tokens yet. In case you have a component with a color that only exists on the colors -> color theme frame Figmagic will warn about: "No matching token! Hard-coding to expected value". Which means, that the component will still be created, just without a token assigned to it the color, since it currently only looks for the Colors frame and not for nested frames.


Templates used for code generation

Starting with Figmagic version 4.0, four types of generated files have customizable templates:

  • Graphic elements
  • React elements
  • Storybook files
  • Styled Components (React) files

These four types have support for a variety of formats that differ a bit between each type.

Figmagic comes with a set of templates for several file formats. In case you want to customize these, you should respect and keep any substitution tags that exist in the original files; removing them may cause your templates to function incorrectly. For example, the React template includes a substitution tag called {{NAME_STYLED}} which will be changed to your adjusted element name with a "Styled" suffix. Removing it would make your generated code useless as-is.

The recommended way of adding and using your own templates would be to copy-paste any/all existing templates from Figmagic into your project, pointing the configuration file to your local copies, and then modifying them as needed.

Token formatting and conversions

Font families

The font family name, either as its common name (as picked up by Figma; spaces are removed) or its Postscript name (eg. FiraSans-Regular).

Default: Common name.

Note: In previous versions of Figmagic the Postscript font family name was used.


Font weights

Typical font weight values like 200, 300 etc.


Font sizes

Units based on global font size (base 16px).

Default: rem units. Can be set to rem or em.


Line heights

Unitless.

2 decimals numbered values by default. Precision can be configured with unitlessPrecision (see config)


Colors

Default: rgba. Can be set to rgba or hex.


Spacing

Default: rem units. Can be set to rem or em.


Border widths

Default: px units.


Letter spacings

Default: em units.


Media queries

Default: px units.


Opacities

Typical 2 decimals numbered values between 0 and 1 like 0 or 0.65. Can be set to percent to have them converted to % strings instead like 0% or 65%.


Duration

Default: s units. Can be set to ms.


Radii

Default: px units.


Shadows

Default: px units for three values (horizontal offset, vertical offset, blur) and RGBA for the color.


Z indices

Default: numbers (whole numbers, i.e. integers).


Code structure

Figmagic source code structure

Folder Description
__tests__/ Tests, structured similarly to the bin folder source code
.github/ GitHub files for CI and issue template
.husky/ Husky pre-commit configuration
.vscode/ Visual Studio Code configuration
bin/ Source code
bin/contracts Types and interfaces
bin/controllers Controllers
bin/entities Entities (DDD-style), this is where most of the logic will be contained
bin/frameworks Non-domain functionality, like string manipulation and downloading files etc.
bin/usecases Where the application "features" are orchestrated, as per Clean Architecture
build/ ES6-compiled code (this is the code that consumers of the Figmagic binary actually use)
images/ Documentation, mostly images and screen shots. You can manually generate the Arkit diagram with npm run docs.
readme/ Additional README files
templates/ Files that are used as templates for code generation
testdata/ Most of the tests point to stored test data which is stored in this folder
translation/ Translations (localizations) of the README
typedoc-docs/ Documentation generated by TypeDoc, which gets hosted at https://docs.figmagic.com. You can manually generate these with npm run docs.
index.ts The file that initializes and sets up everything required to run Figmagic

Arkit diagram

This is how Arkit models Figmagic and its source code structure and dependencies. Note that this diagram omits frameworks, external dependencies and contracts (i.e. types) to focus on the primary flows.

Note! Only visible on the documentation site.

Arkit code structure diagram

License

Figmagic is licensed under the MIT License.

It uses a number of developer dependencies under various open source licenses, but none of these are bundled into the actual binary that users consume as Figmagic itself has no end-user-facing dependencies.

Copyright 2018-2023 Mikael Vesavuori

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FOSSA Status

Contribution

Want to add or rethink something in Figmagic?

You are welcome to contribute to the project! Pull requests, as well as issues or plain messages, work fine. For pull requests, please refer to the contribution guidelines in CONTRIBUTING.md.

Contributors

Thanks goes to these wonderful people (emoji key):


Florent SCHILDKNECHT

💻

Paulo Henrique

💻

Petra Jaros

💻

Marko Marković

💻

mykhailoInnovecs

💻

Zack Brown

💻

Stanko Tadić

💻

Ishmam Chowdhury

💻

Ana Carolina

📖

Shawn McCabe

💻

Mitch O'Hair

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

More Repositories

1

chatgpt-architecture-coach

This is my collection of helpful priming prompts for ChatGPT when discussing various angles of software development and architecture.
78
star
2

dorametrix

Dorametrix is a serverless web service that helps you calculate your DORA metrics, by inferring your metrics from events you create with webhooks (or manually!).
TypeScript
67
star
3

figmagic-example

Using Figmagic (simplifying design token generation and asset extraction) with Webpack 5, React 16, Styled Components.
TypeScript
56
star
4

lambda-dynamic-prerenderer

Dynamically prerender pages for bots and crawlers, with Lambda@Edge, S3 and CloudFront. No more need for isomorphic/server-side rendering!
JavaScript
52
star
5

get-a-room-ddd-example

Get-A-Room example application using Domain Driven Design and Clean Architecture. Written in TypeScript and deployed to AWS with a serverless stack.
TypeScript
33
star
6

github-dora-metrics

Instant, badge-ready DORA metrics for your GitHub repository.
TypeScript
27
star
7

minibook-domain-driven-microservices-aws-in-practice

"Domain Driven Microservices on AWS in Practice" book on Gitbook
19
star
8

better-apis-workshop

Workshop and demo for improving API quality, stability, and observability.
TypeScript
18
star
9

minion

The easiest and most lightweight way for developers to use OpenAI APIs in a CLI.
Shell
17
star
10

figma-plugin-continuous-design

Continuous Design (GitHub Actions) is a Figma plugin that lets you run GitHub Actions workflows from Figma.
HTML
16
star
11

catalogist

Catalogist is the easy way to catalog and make your software and (micro)services visible to your organization in a lightweight and developer-friendly way.
TypeScript
16
star
12

archfit

Validate the fitness of your AWS solutions, without the heavy lifting!
TypeScript
13
star
13

mikrolog

The JSON logger you always wanted for Lambda.
TypeScript
13
star
14

mikrotrace

Tracing the easy way using JSON.
TypeScript
12
star
15

serverless-node-fargate-example

Example for running a Node application on Fargate, deployed with Serverless Framework
JavaScript
11
star
16

hiperf

Hiperf is a high performance web development architecture based on Webpack – just apply your framework.
HTML
11
star
17

triplecheck-cli

The easiest and fastest way to do contract testing.
TypeScript
11
star
18

bedrock-rag-demo

RAG document chat with Amazon Bedrock using Typescript on Lambda.
TypeScript
10
star
19

github-dashboards

Visualize your GitHub repositories and their workflow statuses 📈 like no thing at all 😎
TypeScript
10
star
20

figmagic-action

Use Figmagic to retrieve tokens, graphics, and/or React components from a Figma document.
Shell
9
star
21

gitanalyzed

Therapy for Your Code — Decode Your Repository's Mind!
Shell
9
star
22

codemetrix

Understand the level of coupling and changeability of your code in a second. 🪄
TypeScript
9
star
23

serverless-firestore-crud-api

This is a basic demonstration for how to do CRUD tasks (Create, Read, Update, Delete) in an API-like way on a Firestore database.
JavaScript
9
star
24

eventcatalog-scaffold-asyncapi

Helps you automate the scaffolding of EventCatalog with AsyncAPI support and to generate events from such schemas, including domain support.
JavaScript
9
star
25

cloud-developer-basics

Go from zero to Google Cloud Platform hero. Learn the basics of VMs, networking, containers, serverless, storage etc. through both practical workshops and a bit of theory.
JavaScript
8
star
26

cloudflare-workers-render-cache

Serve ultra-fast, globally available sites or apps by render-caching and asset-proxying on the edge
JavaScript
7
star
27

acmecorp-microservices-webshop

Demonstration of a microservice architecture handling a webshop, using Lambda + API Gateway, Aurora Serverless, and Eventbridge.
TypeScript
7
star
28

webpack4-boilerplate

Webpack 4 boilerplate to get you started with compiling Sass/PostCSS/PreCSS/cssnext, as well as writing ES2015+ style JavaScript.
JavaScript
6
star
29

cloudflare-workers-demos

Assorted demos for how to use Cloudflare Workers
JavaScript
6
star
30

license-compliance-action

License compliance for Node applications made ultra easy. Provide it a string of licenses or fetch licenses dynamically from an online source.
Shell
6
star
31

cloud-run-ts-apollo-graphql

Apollo Server (GraphQL) API using Typescript, deployed on Google Cloud Run
TypeScript
6
star
32

dorametrix-action

Conveniently call Dorametrix to create a deployment event through a GitHub Action.
Shell
5
star
33

gcp-api-gateway-run-gql-auth-demo

Demo: GCP API Gateway fronting a GraphQL API on Cloud Run, secured with Identity-Aware Proxy
Shell
5
star
34

5-minutes-or-less-solid

SOLID principles in TypeScript and JavaScript, demystified in less than 5 minutes each.
TypeScript
5
star
35

a11ytester-action

Runs Webhint and pa11y (accessibility testing tools) on one or more provided URLs.
Shell
5
star
36

slamax

Calculates maximum composite SLA for a list of sequentially provided cloud services or your custom-defined services.
TypeScript
5
star
37

react-ssr-netlify-functions

React SSR on Netlify Functions (AWS Lambda)
JavaScript
5
star
38

mikrovalid

MikroValid is the JSON validator that cuts out all the bullshit.
TypeScript
5
star
39

cf-workers-sheets-toggles

Feature toggles engine on Google Sheets and Cloudflare Workers with KV edge-side storage
JavaScript
4
star
40

serverless-observability-example

Presents a complete project to demonstrate a 'broken' observable serverless application.
TypeScript
4
star
41

aws-performance-testing-starter

This is a basic starting point for conducting performance testing on AWS.
Shell
4
star
42

building-a-production-ready-api-demo

Demonstrates some techniques to achieve production-readiness for a simple system.
TypeScript
4
star
43

node-simple-webserver-gcp-terraform

Deploy a Fastify-backed Node webserver with CI/CD using Cloud Build, deploying it on your choice of Compute Engine, App Engine, or Cloud Run. Supports multiple environments.
HCL
4
star
44

serverless-ssr-react-lambda-at-edge

React Server(less)-Side Rendering on AWS Lambda@Edge
JavaScript
4
star
45

gitmetrix

Helps you find your team-level engineering metrics.
TypeScript
4
star
46

acmecorp-potted-plants-components-starter

React component library with components generated and/or composed with Figmagic. Made for The newline Guide to React Component Design Systems with Figmagic.
JavaScript
3
star
47

multicloud-serverless-canary

Ever wondered how you actually do gradual canary rollouts with AWS, Azure or GCP's serverless platforms? Look no further.
Shell
3
star
48

demo-dorametrix-action

Demonstrates using the Dorametrix action in a Github Actions build.
3
star
49

microservices-testing-workshop

Demonstrates a number of testing types and patterns that should be helpful in testing distributed microservice architectures.
TypeScript
3
star
50

oso-serverless-authorizer

This repository demonstrates a working implementation of Oso in an AWS Lambda context using TypeScript, and being deployed with Serverless Framework.
TypeScript
3
star
51

lambda-github-check

Ready-to-use GitHub check basis for AWS Lambda.
JavaScript
3
star
52

serverless-azure-functions-generate-pdf

Generate PDFs in a serverless way with Azure Functions and pdf-lib
TypeScript
3
star
53

lambda-image-resizer-demo

This example code shows how to easily use Sharp to resize images in a Lambda.
TypeScript
3
star
54

hisec

Hisec is a set of extremely intolerant server configs using CSP and headers.
HTML
2
star
55

lambda-auth-jwt-demo

Basic demonstration of authorizing a JWT with a Lambda Authorizer. This project uses the Client Credentials flow for machine-to-machine communication.
TypeScript
2
star
56

minibook-better-apis

Better APIs minibook on GitBook
2
star
57

minibook-testing-for-software-engineers

The content for the online book "Testing for Software Engineers".
2
star
58

5-minutes-or-less-design-patterns

All of the 23 "Gang of Four" Design Patterns, exemplified in less than 5 minutes each.
TypeScript
2
star
59

5-minutes-or-less-typescript-js

Patterns and features of TypeScript and JavaScript, demystified in less than 5 minutes each.
TypeScript
2
star
60

tdd-demo

Test-driven development demo starter to build a DynamoDB item size calculator.
TypeScript
2
star
61

5-minutes-or-less-refactoring

Learn refactorings in just a few minutes - putting words to those neat, tidy things you hopefully do to your code!
2
star
62

aws-wellarchitected-review-collector

Collect high-level AWS Well-Architected review data for a workload.
TypeScript
2
star
63

api-cache-cloudflare-workers-kv

Rudimentary cache suitable for APIs or similar endpoints using edge functions and KV, an edge key-value store
JavaScript
2
star
64

chrono-utils

Collects a number of helpful date and time utilities for TypeScript/Javascript.
TypeScript
2
star
65

github-ci-demo

This is a basic demonstration of what is needed to run a GitHub Actions CI build by calling their REST API.
2
star
66

serverless-azure-cosmosdb-crud

Serverless CRUD on Cosmos DB (SQL) with Azure Functions, API Management and Typescript
TypeScript
2
star
67

demo-sls-deploy-microservice-to-shared-apigw

Serverless Lambda function deployed under an existing AWS API Gateway.
JavaScript
2
star
68

medium-exfiltrator

Helps you clean up exported Medium posts into a nicer format, ready for use on your own blog or for backup purposes.
TypeScript
2
star
69

slack-devex-survey

Box-ready serverless solution to run developer experience surveys on a scheduled (or one-off!) cadence.
TypeScript
2
star
70

pay-transparency-card

Settle the facts on role, compensation, and everything else you want from a job.
2
star
71

automator-figmagic

Mac OS X Automator service for Figmagic to make it a snap to update tokens.
Shell
1
star
72

ts-cleanarch-starter

Get started fast with Typescript in a structure that should support Clean Architecture.
Shell
1
star
73

demo-netlify-forms

Super-simple demo of Netlify Forms with a custom success page.
HTML
1
star
74

figma-plugin-framebrowser

Your friendly portable mini web browser.
HTML
1
star
75

secure-azure-functions-api-example

Demo for a secured API Management instance fronting an Azure Function
Shell
1
star
76

triplecheck-broker

The TripleCheck broker is a central, global store for all of your contracts and contract tests.
TypeScript
1
star
77

aws-serverless-websockets-example

Demo for serverless WebSockets on AWS.
TypeScript
1
star
78

ngp-demo

Testing
TypeScript
1
star
79

minimal-useful-react-pwa

The right way to do a React PWA in 2019, but with less of someone else's code smell.
JavaScript
1
star
80

convert-gql-to-json

Convert GraphQL schemas to JSON schemas using graphql-2-json-schema running on Cloudflare Workers.
TypeScript
1
star
81

cloud-sla

A collection of cloud providers' SLA values in JSON format for all of their SLA-bearing services.
Shell
1
star
82

decoupling-in-practice-demo

Demo of how to decouple a service in practice.
TypeScript
1
star
83

aws-serverless-outbox-demo

Demonstration of the outbox pattern with Lambda, DynamoDB, and EventBridge.
TypeScript
1
star
84

standardlint-action

This Action makes it even easier to use StandardLint in your GitHub CI runs.
TypeScript
1
star
85

triplecheck-core

Core contracts and utilities for TripleCheck.
HTML
1
star
86

azure-simple-serverless-apollo-server

Ready-to-use starter for GraphQL (Apollo Server) running on Azure Functions
JavaScript
1
star
87

tensorflow-object-detection-retraining-coral-usb-support

Retrain an existing COCO model, and output it with Tensorflow Lite. Shows how to do quantization so you can use it with for example Coral USB Accelerator.
Jupyter Notebook
1
star
88

demo-netlify-functions

Minimal example of using Netlify Functions.
JavaScript
1
star
89

gcp-cloud-functions-golang-feature-toggling-api

A simple, zero maintenance, easy-to-use, resilient and very fast API to ask for market-based feature flags.
Go
1
star
90

google-cloud-functions-example

Demonstrates how to use Google Cloud Functions to send an email and write to a Firebase database.
JavaScript
1
star
91

minimal-react-ssr-gcp

Minimal React implementation with Server-Side Rendering (SSR) on Google Cloud Platform (GCP)
JavaScript
1
star
92

minimal-auth-demos

A mono-repo of several minimal authentication demos. The rationale for this is to provide a jump-start for devs or teams who need to try out, learn, or pick solutions with the least amount of effort possible.
JavaScript
1
star
93

multi-cloud-security-tooling

Scripts and resources for multi-cloud (AWS, Azure, GCP + Mac) security tooling running on Linux.
Shell
1
star
94

automator-servethis

ServeThis: A Mac OS X Automator service that fires up your Node web server
Shell
1
star
95

azure-devops-ci-demo

This is a basic demonstration of what is needed to run a Azure DevOps CI build by calling their REST API. We are using Figmagic for this demo, to demonstrate running it in CI.
1
star
96

designtokens-boilerplate

Get started working with design tokens – great for externalizing design choices from code. Uses Gulp and Salesforce Theo, outputting tokens to either CommonJS modules, Sass, SCSS (standard, maps, variables) or JSON.
JavaScript
1
star
97

documentarian-action

Documentarian is a bundle of tools that generates docs for (primarily) back-ends written in TypeScript and using Serverless Framework which it will then upload to Cloudflare Pages.
Shell
1
star
98

mikrometric

MikroMetric is a Lambda-oriented lightweight wrapper for producing AWS CloudWatch Embedded Metric Format-compatible metric logs.
TypeScript
1
star
99

example-aws-stream-data-to-events

This repo contains a complete, working architecture on AWS that will take in streaming data, store it in S3 and DynamoDB, and then emit events with their contents.
HCL
1
star
100

standardlint

Extensible standards linter and auditor.
TypeScript
1
star