Unify the colori scheme into primary and secondary accent colors

This commit is contained in:
Maurice Parker
2019-09-18 02:49:57 -05:00
parent 372fb06716
commit db2ee18299
17 changed files with 36 additions and 181 deletions

View File

@@ -34,10 +34,10 @@ a:hover {
:root {
color-scheme: light dark;
--link-color: hsla(215, 99%, 43%, 1);
--link-color: #0655BE;
--header-table-border-color: rgba(0, 0, 0, 0.1);
--header-color: rgba(0, 0, 0, 0.3);
--header-link-color: rgba(0, 0, 0, 0.3);
--header-link-color: #086AEE;
--body-code-color: #666;
--system-message-color: #cbcbcb;
--feedlink-color: rgba(0, 0, 0, 0.6);
@@ -45,10 +45,10 @@ a:hover {
@media(prefers-color-scheme: dark) {
:root {
--link-color: #61ADFF;
--link-color: #5E9EF4;
--header-table-border-color: rgba(255, 255, 255, 0.1);
--header-color: #d2d2d2;
--header-link-color: #4490e2;
--header-link-color: #2D80F1;
--body-code-color: #b2b2b2;
--system-message-color: #5f5f5f
}