diff --git a/src/lib/app.css b/src/lib/app.css index cca7bbd..2119752 100644 --- a/src/lib/app.css +++ b/src/lib/app.css @@ -8,12 +8,6 @@ --bg-600: #edf5ba; --accent: #899911; --text: #11100d; - - --bg-1000: #fffcf7; - --bg-800: #f2e8d7; - --bg-700: #d9ccad; - --accent: #92a40a; - --text: #322e1f; } @media (prefers-color-scheme: dark) { @@ -37,6 +31,10 @@ } } +@supports (font-variation-settings: normal) { + body { font-family: InterVariable, sans-serif; } +} + body { margin: 0; padding: 0; @@ -50,12 +48,6 @@ body { box-sizing: border-box; } -@supports (font-variation-settings: normal) { - body { - font-family: InterVariable, sans-serif; - } -} - a { color: var(--accent); text-decoration: none; diff --git a/src/lib/ui/Button.svelte b/src/lib/ui/Button.svelte index 883fb8c..22e4d87 100644 --- a/src/lib/ui/Button.svelte +++ b/src/lib/ui/Button.svelte @@ -48,9 +48,10 @@