scss colors should be css variables
This commit is contained in:
@ -1,12 +1,9 @@
|
||||
@mixin color-matrix {
|
||||
.red { color: rgb(200, 0, 0); }
|
||||
.green { color: rgb(0, 200, 0); }
|
||||
.blue { color: rgb(0, 0, 200); }
|
||||
.cyan { color: rgb(18,167,148); }
|
||||
}
|
||||
|
||||
@mixin text-styles {
|
||||
.bold { font-weight: bold; }
|
||||
.red { color: var(--text-red) }
|
||||
.green { color: var(--text-green) }
|
||||
.blue { color: var(--text-blue) }
|
||||
.cyan { color: var(--text-cyan) }
|
||||
.bold { font-weight: bold; }
|
||||
}
|
||||
|
||||
@mixin stdout-layouts {
|
||||
@ -27,7 +24,6 @@
|
||||
@include term-elements;
|
||||
|
||||
p {
|
||||
@include color-matrix;
|
||||
@include text-styles;
|
||||
|
||||
font-size: 1.2rem;
|
||||
|
Reference in New Issue
Block a user