Move all hex colors in SASS to variables and all variations to darken/lighten
This commit is contained in:
parent
d4d56b8af0
commit
f855d645b2
9 changed files with 203 additions and 199 deletions
8
app/assets/stylesheets/variables.scss
Normal file
8
app/assets/stylesheets/variables.scss
Normal file
|
@ -0,0 +1,8 @@
|
|||
$color1: #282c37; // darkest
|
||||
$color2: #d9e1e8; // lightest
|
||||
$color3: #9baec8; // lighter
|
||||
$color4: #2b90d9; // vibrant
|
||||
$color5: #fff; // white
|
||||
$color6: #df405a; // error red
|
||||
$color7: #79bd9a; // succ green
|
||||
$color8: #000; // black
|
Reference in a new issue