scss colors should be css variables
This commit is contained in:
@ -1,3 +1,14 @@
|
||||
$header-Y: 30px;
|
||||
$footer-Y: 30px;
|
||||
$component-padding: 20px;
|
||||
$component-padding: 20px;
|
||||
|
||||
@mixin text-colors {
|
||||
--text-red: rgb(200, 0, 0);
|
||||
--text-green: rgb(0, 200, 0);
|
||||
--text-blue: rgb(0, 0, 200);
|
||||
--text-cyan: rgb(18,167,148);
|
||||
}
|
||||
|
||||
@mixin css-global {
|
||||
@include text-colors;
|
||||
}
|
Reference in New Issue
Block a user