feature: css: vars: add

This commit is contained in:
coderaiser 2024-03-28 15:02:44 +02:00
parent b1f74c0057
commit c45b23fe55
6 changed files with 30 additions and 6 deletions

6
css/themes/dark.css Normal file
View file

@ -0,0 +1,6 @@
:root {
--text-color: #317bf9;
--border-color: rgb(49 123 249 / 40%);
--background-color: #22272e;
--column-color: #c6d1df;
}

6
css/themes/light.css Normal file
View file

@ -0,0 +1,6 @@
:root {
--text-color: blue;
--border-color: rgb(49 123 249 / 40%);
--background-color: white;
--column-color: black;
}