Updated global

This commit is contained in:
Laux Dev
2026-02-23 15:52:10 +08:00
parent 275593d754
commit 13d420282e
3 changed files with 9 additions and 19 deletions

View File

@@ -1,12 +1,12 @@
:root {
--background: #ffffff;
--foreground: #171717;
--background: #d2d3e0;
--foreground: #1c1d28;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
--background: #1c1d28;
--foreground: #d2d3e0;
}
}
@@ -19,7 +19,7 @@ body {
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
font-family: inter, Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}