better contrast of links on the dark theme

This commit is contained in:
zadam 2019-02-26 22:51:33 +01:00
parent 5b251b9977
commit 8e0d1fa0df

View File

@ -53,6 +53,10 @@ body.theme-black {
--menu-background-color: #222;
}
body.theme-black a, body.theme-black a:visited {
color: lightskyblue;
}
body.theme-black .CodeMirror {
filter: invert(100%) hue-rotate(180deg);
}
@ -80,6 +84,10 @@ body.theme-dark {
--menu-background-color: #222;
}
body.theme-dark a, body.theme-dark a:visited {
color: lightskyblue;
}
body.theme-dark .CodeMirror {
filter: invert(90%) hue-rotate(180deg);
}
@ -118,7 +126,7 @@ button.close {
}
.nav-link.active {
background-color: inherit;
background-color: inherit !important;
color: var(--main-text-color) !important;
}