Skip to content

Commit

Permalink
Use default link color with better contrast.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimisgold committed Apr 29, 2021
1 parent 71598d1 commit 0cefbdd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ background_color.options.validators.hex.validator = "HexColor"
link_color.type = "text"
link_color.options.attribs.class = "color"
link_color.options.label = "Links"
link_color.options.value = "#888888"
link_color.options.value = "#555555"
link_color.options.validators.hex.validator = "HexColor"

; Button color
Expand Down
8 changes: 4 additions & 4 deletions css/sass/_screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1486,13 +1486,13 @@ header {
}

a {
&:link { color:#888; }
&:link { color:#555; }

&:visited { color:#999; }
&:visited { color:#7d7d7d; }

&:hover { color:#777; }
&:hover { color:#2d2d2d; }

&:active { color:#777; }
&:active { color:#2d2d2d; }
}

.button, button,
Expand Down
8 changes: 4 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1413,13 +1413,13 @@ th {
header {
border-color: #000; }
a:link {
color: #888; }
color: #555; }
a:visited {
color: #999; }
color: #7d7d7d; }
a:hover {
color: #777; }
color: #2d2d2d; }
a:active {
color: #777; }
color: #2d2d2d; }
.button, button,
input[type="reset"],
input[type="submit"],
Expand Down

0 comments on commit 0cefbdd

Please sign in to comment.