@zanichelli/albe-design-tokens
v1.3.3
Published

Maintainers
Keywords
Readme

Zanichelli Design Tokens
Intro
This repo is an auxiliary project to zanichelli/design-system repo; it contains .scss files to generate css design tokens.
Structure
src/main.css: index file where everything is importedsrc/modules: folder that contains every needed modulesrc/modules/theme: folder that contains themes filessrc/modules/components: folder that contains classes to style componentssrc/modules/palette: folder that contains every available color in the palette
Naming Convention for Themes:
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}
Build
yarn buildImport in your project
<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";