This repo is an auxiliary project to zanichelli/design-system
repo; it contains .scss
files to generate css design tokens.
-
src/main.css
: index file where everything is imported -
src/modules
: folder that contains every needed module -
src/modules/theme
: folder that contains themes files -
src/modules/components
: folder that contains classes to style components -
src/modules/palette
: folder that contains every available color in the palette
In case of implementation of a new theme, the following convention must be followed:
- theme file name:
{primary-color}-{secondary-color}.scss
- theme class name:
.theme-{primary-color}-{secondary-color}
yarn build
<link rel="stylesheet" src="[***]/dist/tokens.css" />
<link rel="stylesheet" src="[***]/dist/themes/<theme-name>.css" />
or
@import "~@zanichelli/albe-design-tokens/dist/tokens.css";
@import "~@zanichelli/albe-design-tokens/dist/themes/<theme-name>.css";