normalize themes

This commit is contained in:
mat 2024-07-01 02:36:22 -05:00
parent 50b25a35f0
commit 2fd44599e2
3 changed files with 21 additions and 18 deletions

View File

@ -22,7 +22,7 @@
/* green, success */ /* green, success */
--positive: #7fd962; --positive: #7fd962;
/* red, errors */ /* red, error */
--negative: #d95757; --negative: #d95757;
--syntax-string: #aad94c; --syntax-string: #aad94c;

View File

@ -22,9 +22,12 @@
/* green, success */ /* green, success */
--positive: #7fd962; --positive: #7fd962;
/* red, error */
--negative: #f38ba8;
--syntax-string: #aad94c; --syntax-string: #a6e3a1;
--syntax-special: #e6b673; --syntax-special: #fab387;
--syntax-constant: #d2a6ff; --syntax-constant: #cba6f7;
--syntax-comment: #acb6bf8c; --syntax-comment: #6c7086;
--syntax-func: #89b4fa;
} }

View File

@ -1,29 +1,29 @@
:root { :root {
/* body background */ /* body background */
--bg-1: hsl(223 calc(1 * 6.7%) 20.6% / 1); --bg-1: #313338;
/* background of the content */ /* background of the content */
--bg-2: hsl(220 calc(1 * 6.5%) 18% / 1); --bg-2: #2b2d31;
/* input suggestions background */ /* input suggestions background */
--bg-3: hsl(225 calc(1 * 6.3%) 12.5% / 1); --bg-3: #1e1f22;
/* mostly borders */ /* mostly borders */
--bg-4: transparent; --bg-4: transparent;
/* main text color */ /* main text color */
--fg-1: hsl(210 calc(1 * 9.1%) 87.1% / 1); --fg-1: #dbdee1;
/* search result description */ /* search result description */
--fg-2: hsl(215 calc(1 * 8.8%) 73.3% / 1); --fg-2: #b5bac1;
--fg-3: hsl(214 calc(1 * 8.1%) 61.2% / 1); --fg-3: #949ba4;
/* focus outline */ /* focus outline */
--accent: hsl(227 calc(1 * 6.5%) 27.3% / 1); --accent: #41434a;
--link: hsl(200 calc(1 * 100%) 49.4% / 1); --link: #00a8fc;
--link-visited: hsl(201 calc(1 * 100%) 59% / 1); --link-visited: #2eb6ff;
/* green, success */ /* green, success */
--positive: hsl(145 calc(1 * 65%) 39.2% / 1); --positive: #23a559;
/* red, errors */ /* red, error */
--negative: hsl(358 calc(1 * 92.9%) 72.4% / 1); --negative: #fa777c;
--syntax-string: #aad94c; --syntax-string: #aad94c;
--syntax-special: #e6b673; --syntax-special: #e6b673;