Backend integrated?
Some checks failed
Build and Deploy Nuxt / build (push) Failing after 2m1s

This commit is contained in:
2026-03-17 19:48:05 +01:00
parent 3e0cdf8cc4
commit 45404157b3
15 changed files with 1624 additions and 58 deletions

View File

@@ -1,3 +1,5 @@
@use "sass:map";
$themes: (
dark: (
background: #141414,
@@ -24,9 +26,9 @@ $themes: (
}
:root {
@include theme-vars(map-get($themes, dark));
@include theme-vars(map.get($themes, dark));
}
[data-theme="light"] {
@include theme-vars(map-get($themes, light));
@include theme-vars(map.get($themes, light));
}