This commit is contained in:
@@ -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));
|
||||
}
|
||||
Reference in New Issue
Block a user