diff --git a/src/lib/app.css b/src/lib/app.css index 2119752..cca7bbd 100644 --- a/src/lib/app.css +++ b/src/lib/app.css @@ -8,6 +8,12 @@ --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) { @@ -31,10 +37,6 @@ } } -@supports (font-variation-settings: normal) { - body { font-family: InterVariable, sans-serif; } -} - body { margin: 0; padding: 0; @@ -48,6 +50,12 @@ 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 22e4d87..883fb8c 100644 --- a/src/lib/ui/Button.svelte +++ b/src/lib/ui/Button.svelte @@ -48,10 +48,9 @@