dull title when visited, more distinct visited links

This commit is contained in:
keyan 2022-08-31 15:22:25 -05:00
parent a5d1d8dc0f
commit 20a6a51492
3 changed files with 8 additions and 4 deletions

View File

@ -34,7 +34,7 @@ const COLORS = {
grey: '#707070', grey: '#707070',
link: '#007cbe', link: '#007cbe',
linkHover: '#004a72', linkHover: '#004a72',
linkVisited: '#7acaf5' linkVisited: '#537587'
}, },
dark: { dark: {
body: '#000000', body: '#000000',
@ -53,7 +53,7 @@ const COLORS = {
grey: '#969696', grey: '#969696',
link: '#2e99d1', link: '#2e99d1',
linkHover: '#007cbe', linkHover: '#007cbe',
linkVisited: '#066ba3' linkVisited: '#56798E'
} }
} }

View File

@ -4,6 +4,10 @@
max-width: 100%; max-width: 100%;
} }
a.title:visited {
color: var(--theme-grey) !important;
}
.upvote { .upvote {
margin-top: 3px; margin-top: 3px;
} }

View File

@ -19,7 +19,7 @@ const COLORS = {
grey: '#707070', grey: '#707070',
link: '#007cbe', link: '#007cbe',
linkHover: '#004a72', linkHover: '#004a72',
linkVisited: '#7acaf5' linkVisited: '#537587'
}, },
dark: { dark: {
body: '#000000', body: '#000000',
@ -38,7 +38,7 @@ const COLORS = {
grey: '#969696', grey: '#969696',
link: '#2e99d1', link: '#2e99d1',
linkHover: '#007cbe', linkHover: '#007cbe',
linkVisited: '#066ba3' linkVisited: '#56798E'
} }
} }