A (very) small CSS preprocessor. It implements SCSS style variables for your css file(s).
Variables are a way to store information that you want to reuse in a stylesheet. Change the value of a variable and all the instances where it is used will update automatically.
Variables have to be declared and initialised:
$default-margin: 1em;
$text-color: #222;
$border-color: #bbb;
Later on they can be used:
blockquote {
margin: $default-margin;
color: $text-color;
border-left: 4px solid $border-color;
}
- Download and install Yellow.
- Download plugin. If you are using Safari, right click and select 'Download file as'.
- Copy
master.zip
into yoursystem/plugins
folder. - Use $variables in the .css file(s) in your
system/themes
folder.
To uninstall delete the plugin files.