diff --git a/src/web/assets/style.css b/src/web/assets/style.css index 2bbecc8..3308037 100644 --- a/src/web/assets/style.css +++ b/src/web/assets/style.css @@ -22,7 +22,7 @@ /* green, success */ --positive: #7fd962; - /* red, errors */ + /* red, error */ --negative: #d95757; --syntax-string: #aad94c; diff --git a/src/web/assets/themes/catppuccin-mocha.css b/src/web/assets/themes/catppuccin-mocha.css index 2a6bbdb..eb47bf9 100644 --- a/src/web/assets/themes/catppuccin-mocha.css +++ b/src/web/assets/themes/catppuccin-mocha.css @@ -22,9 +22,12 @@ /* green, success */ --positive: #7fd962; + /* red, error */ + --negative: #f38ba8; - --syntax-string: #aad94c; - --syntax-special: #e6b673; - --syntax-constant: #d2a6ff; - --syntax-comment: #acb6bf8c; + --syntax-string: #a6e3a1; + --syntax-special: #fab387; + --syntax-constant: #cba6f7; + --syntax-comment: #6c7086; + --syntax-func: #89b4fa; } diff --git a/src/web/assets/themes/discord.css b/src/web/assets/themes/discord.css index eab8d77..9892fb1 100644 --- a/src/web/assets/themes/discord.css +++ b/src/web/assets/themes/discord.css @@ -1,30 +1,30 @@ :root { /* body background */ - --bg-1: hsl(223 calc(1 * 6.7%) 20.6% / 1); + --bg-1: #313338; /* background of the content */ - --bg-2: hsl(220 calc(1 * 6.5%) 18% / 1); + --bg-2: #2b2d31; /* input suggestions background */ - --bg-3: hsl(225 calc(1 * 6.3%) 12.5% / 1); + --bg-3: #1e1f22; /* mostly borders */ --bg-4: transparent; /* main text color */ - --fg-1: hsl(210 calc(1 * 9.1%) 87.1% / 1); + --fg-1: #dbdee1; /* search result description */ - --fg-2: hsl(215 calc(1 * 8.8%) 73.3% / 1); - --fg-3: hsl(214 calc(1 * 8.1%) 61.2% / 1); + --fg-2: #b5bac1; + --fg-3: #949ba4; /* focus outline */ - --accent: hsl(227 calc(1 * 6.5%) 27.3% / 1); + --accent: #41434a; - --link: hsl(200 calc(1 * 100%) 49.4% / 1); - --link-visited: hsl(201 calc(1 * 100%) 59% / 1); + --link: #00a8fc; + --link-visited: #2eb6ff; /* green, success */ - --positive: hsl(145 calc(1 * 65%) 39.2% / 1); - /* red, errors */ - --negative: hsl(358 calc(1 * 92.9%) 72.4% / 1); - + --positive: #23a559; + /* red, error */ + --negative: #fa777c; + --syntax-string: #aad94c; --syntax-special: #e6b673; --syntax-constant: #d2a6ff;