Skip to content

Commit

Permalink
main.scss: make the dark theme colors more Aminda
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikaela committed May 29, 2024
1 parent 88a368f commit 9f5a17f
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ $monospace-font-family: "Liberation Mono", "Cousine", "Courier New", monospace;
// Revert to defaults
* {
color: revert !important;
text-color: revert !important;
background-color: revert !important;
}

Expand All @@ -36,17 +35,29 @@ pre {

// Overrides for dark themes
@media (prefers-color-scheme: dark) {
* {
color: #ffb700 !important;
border-color: #ffb700 !important;
background-color: #000000 !important;
}

// Adblocker detection)
.ftf-dma-note {
color-scheme: only dark !important;
color: #ffffff !important;
background-color: #1c1b22 !important;
color: #ffb700 !important;
border-color: #ffb700 !important;
background-color: #000000 !important;
}

.site-nav {
color-scheme: only dark !important;
color: #ffffff !important;
background-color: #1c1b22 !important;
border: 1px solid #ffffff !important;
color: #ffb700 !important;
background-color: #000000 !important;
color: #ffb700 !important;
}

a {
color: revert !important;
}
}

Expand Down

0 comments on commit 9f5a17f

Please sign in to comment.