Coutoire: Renaming css color names to their hex equivalents.
This commit is contained in:
parent
85b0f4dc42
commit
5500938be9
1 changed files with 6 additions and 6 deletions
|
@ -70,12 +70,12 @@ $config-global: (
|
|||
/* Colors */
|
||||
"color": (
|
||||
"primary": (
|
||||
"default": black,
|
||||
"default": #000000,
|
||||
"hover": #FF7A5C,
|
||||
),
|
||||
"secondary": (
|
||||
"default": #FF7A5C,
|
||||
"hover": darkred,
|
||||
"hover": #8B0000,
|
||||
),
|
||||
"foreground": (
|
||||
"default": #444444,
|
||||
|
@ -83,7 +83,7 @@ $config-global: (
|
|||
"dark": #111111, // must be accessible against background
|
||||
),
|
||||
"background": (
|
||||
"default": white,
|
||||
"default": #FFFFFF,
|
||||
"light": #FAFAFA, // must be accessible against foreground-default
|
||||
"dark": #DDDDDD, // must be accessible against foreground-default
|
||||
),
|
||||
|
@ -98,9 +98,9 @@ $config-global: (
|
|||
"warning": #ffcf49,
|
||||
"error": #FF7A5C,
|
||||
),
|
||||
"text-selection": lightblue,
|
||||
"black": black,
|
||||
"white": white,
|
||||
"text-selection": #add8e6,
|
||||
"black": #000000,
|
||||
"white": #FFFFFF,
|
||||
),
|
||||
|
||||
/* Spacing */
|
||||
|
|
Loading…
Reference in a new issue