feat: add settings page

This commit is contained in:
YunYouJun
2023-08-20 02:28:00 +08:00
parent 95ce2c4dac
commit 98123b0039
14 changed files with 1638 additions and 971 deletions

View File

@@ -2,11 +2,23 @@
--c-primary: #5fc178;
--c-text: #333;
--c-bg: #fff;
--c-bg: white;
--c-bg-alt: #f9fbfd;
}
.dark {
--c-text: #fafafa;
--c-bg: #121212;
--c-bg-alt: #333;
}
// ylf
:root {
--ylf-c-bg-alt: var(--c-bg-alt);
--ylf-c-border: #eaeaea;
}
.dark {
--ylf-c-border: #666;
}

View File

@@ -8,11 +8,10 @@ body,
height: 100%;
margin: 0;
padding: 0;
background: var(--c-bg);
}
html.dark {
background: #121212;
}
input:focus {
outline: none;