feat: import theme icons, set color vars, option cookie

This commit is contained in:
httpjamesm
2022-12-28 11:49:14 -05:00
parent 26c7a5f5ee
commit 3d53fd5806
11 changed files with 68 additions and 27 deletions

View File

@ -1,3 +1,25 @@
:root {
--main-bg: #1b1f26;
--text-color: #fff;
--muted-text-color: #b3b3b3;
--code-bg: #36383d;
--input-bg: #2b303b;
--input-bg-hover: #3b404b;
--meta-bg: rgb(82, 82, 98);
--divider-color: #42464e;
}
[data-theme="light"] {
--main-bg: rgb(219, 219, 219);
--text-color: #000;
--muted-text-color: #636363;
--code-bg: #b5b5b5;
--input-bg: rgb(188, 188, 188);
--input-bg-hover: rgb(168, 168, 168);
--meta-bg: rgb(170, 168, 168);
--divider-color: #b5b5b5;
}
a {
color: #92adff;
}