From 87e4ca81111347dd4f0c4520aeedc70968147595 Mon Sep 17 00:00:00 2001 From: wagonsoftware Date: Fri, 21 Oct 2022 21:07:52 +0300 Subject: [PATCH] add vars in css --- src/styles.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/styles.scss b/src/styles.scss index 90d4ee0..a652dc5 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -1 +1,21 @@ /* You can add global styles to this file, and also import other style files */ +html, body { + color: #fff!important; + background-color: #222; +} + +:root { + --sk-gap-s: 0.25rem; + --sk-gap-m: 0.5rem; + --sk-gap-l: 0.75rem; + --sk-gap-xl: 1rem; + + // colors + --sk-input: rgba(18,18,18,0.5); + --sk-input-focus: rgba(18,18,18,0.9); + --sk-accent: #67A69E; + --sk-accent-dark: #2A3B39; + + // border-radius + --sk-br-m: 0.5rem; +}