The goal of this project is to ease creation and usage of a basic CSS design system (design tokens). Our aim is to bring Tailwind's design system benefits to a regular CSS workflow.
As a result you will use a configurable set of CSS variables throughout your styles while your IDE and linter will assist you with snippets and auto fixing.
Main parts of the project:
- Style variables to hold global values meaningful for the whole project (colors, typography and so on)
- IDE snippets to ease usage of variables for developers
- Linting configuration to enforce usage of variables and fight the habit of using absolute values
All these parts are connected via special configuration file containing rules of your design system.
- Install and configure PostCSS:
- Install
postcss
andpostcss-custom-media
- Add
postcss-custom-media
topostcss.config.js
- Install
- Install
stylelint
- Add this project as dev dependency
- Copy
dsgen.config.js
to the root of your project - Make changes to your
dsgen.config.js
:- Adjust design tokens (colors, fonts, etc.)
- Adjust media queries list
- Set CSS file path
- Run generation script:
npx dsgen
, it will generate:- CSS file with CSS variables and custom media variables (see example design-tokens.css here)
- Snippets for IDEs (see examples in snippets directory here)
- Import generated CSS file inside your
index.css
:@import 'design-tokens.css';
- Add snippets to your IDE
- Configure
stylelint
You can see full example in dsgen.config.js
file in this repo.
Tokens from this config will be converted to CSS file and IDE snippets.
To create multiple themes:
- Add
themes
object to config, where key is theme name and value is theme selector. E.g.:themes: { default: ':root', dark: 'html.theme_dark', },
- Now you can add multiple values for each variable:
textColors: { primary: { default: '#111', dark: '#eee', }, }
CSS variables generated from config are exported to a separate file. Don't change this file manually as it will be fully rewritten after config update.
See example CSS file in design-tokens.css.
For z-indices we recommend using postcss-easy-z
to manually declare relations between them.
IDE snippets are also generated from config file.
Some examples:
@mobile -> @media (--mobile) {}
color-primary -> color: var(--color-primary);
bgc-secondary -> background-color: var(--color-bg-secondary);
fz-s -> font-size: var(--font-size-s);
JetBrains IDEs don't support project snippets, so you'll need to add snippets globally. Place snippets file inside jba_config/templates
in the IDE configuration directory.
E.g. on Mac OS: ~/Library/Application\ Support/JetBrains/WebStorm2021.1/jba_config/templates/
Then restart IDE, and you'll see snippets group available in Preferences:
You'll need to manually enable/disable snippets groups if you are working on multiple projects with different design system configs.
To make this process easier please vote for per-project templates in JetBrains IDEs.
By default, VS Code snippets are placed inside .vscode
folders. That way snippets will be available only for current project.
You'll need to update .gitignore
to commit snippets without committing other workspace settings:
.vscode/*
!.vscode/*.code-snippets
We use linting to enforce usage of CSS variables instead of absolute values. To achieve that we use stylelint-declaration-strict-value
plugin for stylelint
.
// stylelint.config.js
module.exports = {
extends: ['dsgen/stylelint.config'],
}
Other benefit of using stylelint-declaration-strict-value
is that it supports auto fixing. We use dsgen
config file to determine which absolute values should be replaced with CSS variables.
E.g. with this config:
// dsgen.config.js
module.exports = {
fontSizes: {
s: '12px',
m: '16px',
l: '24px',
},
}
.component {
font-size: 16px;
}
/* becomes */
.component {
font-size: var(--font-size-m);
}