Skip to content

Commit

Permalink
Fix dark mode not having blue links + increase text contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
yutotakano committed Mar 1, 2024
1 parent 192c862 commit 1fd9612
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions static/css/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ section:hover .link-icon:hover, section:hover .edit-pencil:hover {

#title {
/* background: url("../img/betterinf-title-dark.png"); */
color: rgb(169, 169, 179);
color: rgb(214, 214, 224);
}

#menu {
Expand All @@ -592,7 +592,7 @@ section:hover .link-icon:hover, section:hover .edit-pencil:hover {
}

.btn {
border-color: rgb(169, 169, 179);
border-color: rgb(214, 214, 224);
}

/* Mobile */
Expand All @@ -602,14 +602,19 @@ section:hover .link-icon:hover, section:hover .edit-pencil:hover {
border-color: #ffb300;
}

a {
color: #3d9bef;
text-decoration: none
}

/* Dark mode extras */

html, html * {
html {
background-color: rgb(34, 34, 34);
color: rgb(169, 169, 179);
color: rgb(214, 214, 224);
}

#content a:link {
text-decoration: underline;
}
}
}

0 comments on commit 1fd9612

Please sign in to comment.