From b760d9ef751e4c72b50df80fb144c77efae840ea Mon Sep 17 00:00:00 2001 From: Jakub Doka Date: Sat, 23 Nov 2024 08:38:41 +0100 Subject: [PATCH] improving theming --- depell/src/index.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/depell/src/index.css b/depell/src/index.css index a52cd62..587ede2 100644 --- a/depell/src/index.css +++ b/depell/src/index.css @@ -3,11 +3,10 @@ } body { - --primary: white; - --secondary: #EFEFEF; - --timestamp: #777777; + --primary: light-dark(white, #181A1B); + --secondary: light-dark(#EFEFEF, #212425); + --timestamp: light-dark(#555555, #AAAAAA); --error: #ff3333; - --placeholder: #333333; } body { @@ -176,9 +175,9 @@ div#dep-list { &.Paren, &.Bracket, &.Comma, - &.Dor, + &.Dot, &.Ctor, &.Colon { - color: #5c6a72; + color: light-dark(#5c6a72, #999999); } }