Concept
Classes
The framework has a set of utility and component classes for quickly applying CSS rules to HTML elements.
Utility classes represent low-level rules for styling elements. They control properties such as display, margin, border, padding, width, color, etc.
Component classes represent high-level rules for styles of commonly used components. They declare components such as button.
<button class="button">Settings</button>
<button class="button">Profile</button>
</div>
Class modifiers
Class modifiers define a condition for which to apply the class.
They are added before the class name with `:` used as a separator.
<button class="button hover:color-invert">Settings</button>
<button class="button">Profile</button>
</div>
Lengths
The framework has the base-length variable and uses its multiples for most length-related utility classes and CSS properties in component classes.
This helps make design consistent in terms of sizing and spacing.
The length is specified at the end of the class.
Hello!
</div>
Color palette
For each color scheme (dark / light), the framework has five monochrome color palettes called hues. Each has three levels of chroma (variations).
Customizable
Sizing, spacing and color palette can be easily adapted to your needs by editing CSS variables.