1.0.1 • Published 2 years ago
suss-css v1.0.1
Super Simple Styling
how to use
this is the first version of this preprocessor, so there are only 2 functionalities
- @var
- $VARIABLE
Making Vars
to make a var you need to use @var keyword
@var [NAME] = [VALUE]Using Vars
to use a var you just need to use $ along with the vars name
body{
color: $color;
}processing .suss to css
to do this you need to use the susspp CLI
npx susspp your_file_name.sussthis will return a .css file in the same location as you .suss file