fix(css): darker a:visited

This commit is contained in:
MDLeom 2020-12-12 09:29:20 +00:00
parent f7cba273bc
commit 6b221e6531
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
2 changed files with 5 additions and 8 deletions

View File

@ -86,7 +86,7 @@ a:focus {
} }
a:visited { a:visited {
color: #0b0080; color: purple;
} }
a:active { a:active {

View File

@ -472,7 +472,6 @@ select:not([multiple]):not([size]) {
:root { :root {
--main-bg-color: black; --main-bg-color: black;
--main-font-color: #e6e6e6; --main-font-color: #e6e6e6;
--link-hover: white;
--alt-bg-color: #333; --alt-bg-color: #333;
--link-underline: #3f72af; --link-underline: #3f72af;
} }
@ -553,12 +552,12 @@ a:focus {
text-decoration: underline; text-decoration: underline;
} }
a:active { a:visited {
color: #faa700; color: purple;
} }
a:visited { a:active {
color: #0b0080; color: #faa700;
} }
button, button,
@ -1302,7 +1301,6 @@ unhide (via JS) if Web Share API is supported */
:root { :root {
--main-bg-color: black; --main-bg-color: black;
--main-font-color: #e6e6e6; --main-font-color: #e6e6e6;
--link-hover: white;
--alt-bg-color: #333; --alt-bg-color: #333;
} }
} }
@ -1311,7 +1309,6 @@ unhide (via JS) if Web Share API is supported */
:root { :root {
--main-bg-color: #f1f1f1; --main-bg-color: #f1f1f1;
--main-font-color: #333; --main-font-color: #333;
--link-hover: black;
--alt-bg-color: #d8d8d8; --alt-bg-color: #d8d8d8;
} }