From 9d559da53be476b9b9b3aef87d0debc4a871a4dd Mon Sep 17 00:00:00 2001 From: Gabriel <gabriel@libresolutions.network> Date: Tue, 22 Apr 2025 13:00:44 -0400 Subject: [PATCH] remove light mode --- static/css/theme.css | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/static/css/theme.css b/static/css/theme.css index 4675278..2a63091 100644 --- a/static/css/theme.css +++ b/static/css/theme.css @@ -1,17 +1,14 @@ html{ - --color-primary: white; - --color-secondary: black; - --color-accent:#09448c; - --accent-alternate:#ffd336; --font-family:sans-serif; --font-size:16px; --font-alternate:code; } body { - --color-primary: rgb(255, 255, 255); - --color-secondary: black; - --color-accent: #09448c; + --color-primary: rgb(0, 0, 0); + --color-secondary: white; + --color-accent: #1291e5; + --accent-alternate:#51320d; color: var(--color-secondary); background-color: var(--color-primary); margin: 0; @@ -23,14 +20,6 @@ body { align-items: center; } -@media screen and (prefers-color-scheme:dark) { - body { - --color-primary: rgb(0, 0, 0); - --color-secondary: white; - --color-accent: #1291e5; - --accent-alternate:#51320d; - } -} header, footer {