summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-19 20:12:35 -0400
committerseth <[email protected]>2024-07-19 20:12:35 -0400
commita9f38bb9a484d65023f5e86a298c5cb3c5840b94 (patch)
treebec660d80a42c2e3472e1872c8ac2a59f24e3aaa /static
parentf6ac7497c4a44668505341a145909411b7ddc9b5 (diff)
vendor some catppuccin colors
Diffstat (limited to 'static')
-rw-r--r--static/main.css13
1 files changed, 8 insertions, 5 deletions
diff --git a/static/main.css b/static/main.css
index 133e31d..28318cb 100644
--- a/static/main.css
+++ b/static/main.css
@@ -1,11 +1,14 @@
-@import url("https://unpkg.com/@catppuccin/palette/css/catppuccin.css");
+/*
+* This palette is from the Catppuccin project. Check it out!
+* https://catppuccin.com/
+*/
:root {
- --background-color: var(--ctp-mocha-base);
+ --background-color: #1e1e2e; /* mocha base */
--primary-font: "Noto Sans";
- --regular-text: var(--ctp-mocha-text);
- --blue-text: var(--ctp-mocha-blue);
- --subtext: var(--ctp-mocha-subtext1);
+ --regular-text: #cdd6f4; /* mocha text */
+ --blue-text: #89b4fa; /* mocha blue */
+ --subtext: #bac2de; /* mocha subtext1 */
--medium-screen: 768px;
}