From 9f5a17f76d564f3e6923569925ff614b9ed64c20 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Wed, 29 May 2024 08:23:49 +0300 Subject: [PATCH] main.scss: make the dark theme colors more Aminda --- assets/main.scss | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/assets/main.scss b/assets/main.scss index e27e94c..ded25b8 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -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; } @@ -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; } }