From 8783e401f823f5f9144d717ac8537558d5bbafeb Mon Sep 17 00:00:00 2001 From: badbl0cks <4161747+badbl0cks@users.noreply.github.com> Date: Fri, 27 Feb 2026 09:03:12 -0800 Subject: [PATCH] Remove test colors from css that were accidentally left in prefers-color-scheme and prefers-contrast --- public/style.css | 30 ++++++------------------------ 1 file changed, 6 insertions(+), 24 deletions(-) diff --git a/public/style.css b/public/style.css index e37dc32..a4382aa 100644 --- a/public/style.css +++ b/public/style.css @@ -1,6 +1,6 @@ -/* -Inspired by: - - Mike Mai @ https://mikemai.net/ +/* +Inspired by: + - Mike Mai @ https://mikemai.net/ - David Bushell @ https://dbushell.com/ - Viznut @ http://viznut.fi/ */ @@ -118,27 +118,9 @@ Inspired by: } } - @media (prefers-color-scheme: light) { - :root { - --color-fg: #404040; - --color-bg: #f4f4f4; - --color-accent: crimson; - } - } + @media (prefers-color-scheme: light) {} - @media (prefers-contrast: more) { - :root { - --color-fg: white; - --color-bg: black; - --color-accent: cyan; - } - } + @media (prefers-contrast: more) {} - @media (prefers-color-scheme: light) and (prefers-contrast: more) { - :root { - --color-fg: black; - --color-bg: white; - --color-accent: firebrick; - } - } + @media (prefers-reduced-motion: reduce) {} }