Iterate on the color palettes
Darker link color for light backgrounds
This commit is contained in:
parent
05b12501a3
commit
d5bb94dfb6
3 changed files with 4 additions and 4 deletions
|
@ -154,7 +154,7 @@ pre {
|
|||
}
|
||||
|
||||
a {
|
||||
color: #1E88E5;
|
||||
color: #1976D2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
|
|
@ -86,14 +86,14 @@
|
|||
--theme-main: #FBC02D;
|
||||
--theme-text: black;
|
||||
--theme-input: #FFEB3B;
|
||||
--theme-link: #1E88E5;
|
||||
--theme-link: #1976D2;
|
||||
}
|
||||
|
||||
.theme-amber {
|
||||
--theme-main: #FFC107;
|
||||
--theme-text: black;
|
||||
--theme-input: #FFD54F;
|
||||
--theme-link: #1E88E5;
|
||||
--theme-link: #1976D2;
|
||||
}
|
||||
|
||||
.theme-orange {
|
||||
|
|
|
@ -34,7 +34,7 @@ def prep(x):
|
|||
"main": cols[main_index],
|
||||
"input": x['colors'][3 if main_index == 0 else 5],
|
||||
"text": "white" if dark_main else "black",
|
||||
"link": blues[2] if dark_main else blues[6],
|
||||
"link": blues[2] if dark_main else blues[7],
|
||||
}
|
||||
|
||||
blues = [x for x in palettes if x['shade'] == "Blue"][0]["colors"]
|
||||
|
|
Loading…
Reference in a new issue