sw-constants
Create constants that can be used anywhere in your project.
Usage
Input
@sw-constants {
red: rgb(255, 0, 0);
}
.elem {
color: red;
}
Output
.elem {
color: rgb(255, 0, 0);
}
Create constants that can be used anywhere in your project.
@sw-constants {
red: rgb(255, 0, 0);
}
.elem {
color: red;
}
.elem {
color: rgb(255, 0, 0);
}