Persist theme to file-backed content and add forest/sunset themes

This commit is contained in:
Nate Emmert
2026-03-17 16:01:16 -04:00
parent d6c6aaf234
commit 4dd7a5cb9b
3 changed files with 66 additions and 4 deletions
+34
View File
@@ -59,6 +59,40 @@
--input-bg: #121d2b;
}
:root[data-theme='forest'] {
--bg: #edf4ee;
--ink: #1a2a20;
--ink-muted: #446051;
--line: #bfd6c4;
--accent: #2f7a4e;
--hero-glow: #9ad3ac;
--bg-radial: #dceedd;
--bg-bottom: #d9eadc;
--surface: #ffffff;
--surface-soft: #f6fbf7;
--chip-bg: #edf6ef;
--pill-bg: #dff0e3;
--pill-ink: #24593a;
--input-bg: #f8fcf8;
}
:root[data-theme='sunset'] {
--bg: #fff1e8;
--ink: #3d1f1a;
--ink-muted: #7d4a3d;
--line: #f0c8b5;
--accent: #d85b34;
--hero-glow: #ffc08f;
--bg-radial: #ffe1cc;
--bg-bottom: #ffd8bf;
--surface: #fffaf7;
--surface-soft: #fff5ef;
--chip-bg: #ffece0;
--pill-bg: #ffe2d1;
--pill-ink: #8a3f2a;
--input-bg: #fff9f4;
}
* {
box-sizing: border-box;
}