Coutoire: Renaming css color names to their hex equivalents.

This commit is contained in:
Allan Cole 2020-06-01 18:07:49 -04:00 committed by GitHub
parent 85b0f4dc42
commit 5500938be9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 */