Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.26 KB

README.md

File metadata and controls

51 lines (33 loc) · 1.26 KB

Zanichelli logo

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 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

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 build

Import 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";