The Style Guide defines visual design standards, typography, color palette, dimensions, shape and other aspects, ensuring uniformity and simplifying the development process.
Please follow the rules and tokens provided in the guide.
- Use kebab case notation for tokens naming.
{
background-color: rgba($color-yellow, $opacity-8);
color: $color-black;
}
- Token type:
$color
- The name of the color.
- Tone (optional).
{
background-color: rgba($color-yellow, $opacity-8);
color: rgba($color-black, $opacity-80);
opacity: $opacity-100;
}
- Token type:
$opacity
- The opacity value (as a percentage).
Token | Value |
---|---|
$opacity-100 |
1 |
$opacity-80 |
0.8 |
$opacity-70 |
0.7 |
$opacity-50 |
0.5 |
$opacity-20 |
0.2 |
$opacity-10 |
0.1 |
$opacity-8 |
0.08 |
$opacity-0 |
0 |
🚧 The section is in development 🚧
🚧 The section is in development 🚧
🚧 The section is in development 🚧