From 198f6dce6d4459d98628b39ef13e60f220bee74e Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sat, 20 Jul 2024 18:43:16 -0400 Subject: [PATCH] darkmode adjustment --- src/stylelite.css | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/stylelite.css b/src/stylelite.css index 63a4a60..d1a77aa 100644 --- a/src/stylelite.css +++ b/src/stylelite.css @@ -1,7 +1,9 @@ /*! Stylelite v:0.8.2 | MIT LICENSE | https://github.com/n2geoff/stylelite */ :root { + --theme: steelblue; --size: 1rem; --radius: 0rem; + --fg: #17202A; --bg: #FDFEFE; --mg: #99A3A4; @@ -11,14 +13,20 @@ --light: #EEE; --dark: #222; - - --theme: steelblue; } [data-theme=dark] { - --mg: #99A3A4;; - --bg: #17202A; - --fg: #EAECEE; + --theme: #5499C7; + + --mg: #555; + --bg: #222; + --fg: #FFF; + + --white: #FFF; + --black: #000; + + --dark: #DDD; + --light: #444; } * {margin:0}