2024-03-21 16:11:54 +00:00
|
|
|
/* Bulma Themes */
|
|
|
|
|
@charset "utf-8";
|
|
|
|
|
|
2025-04-19 15:39:25 +02:00
|
|
|
@use "../utilities/initial-variables" as iv;
|
2024-03-21 16:11:54 +00:00
|
|
|
@use "../utilities/css-variables" as cv;
|
|
|
|
|
|
|
|
|
|
@use "light";
|
|
|
|
|
@use "dark";
|
|
|
|
|
@use "setup";
|
|
|
|
|
|
2025-04-19 15:39:25 +02:00
|
|
|
#{iv.$variables-host} {
|
2024-03-21 16:11:54 +00:00
|
|
|
@include light.light-theme;
|
|
|
|
|
@include setup.setup-theme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// prefers-color-scheme: light
|
|
|
|
|
@include cv.system-theme($name: "light") {
|
|
|
|
|
@include light.light-theme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// prefers-color-scheme: dark
|
|
|
|
|
@include cv.system-theme($name: "dark") {
|
|
|
|
|
@include dark.dark-theme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// :root, [data-theme=light], .theme-light
|
|
|
|
|
@include cv.bulma-theme($name: "light") {
|
|
|
|
|
@include light.light-theme;
|
|
|
|
|
@include setup.setup-theme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// [data-theme=dark], .theme-dark
|
|
|
|
|
@include cv.bulma-theme($name: "dark") {
|
|
|
|
|
@include dark.dark-theme;
|
|
|
|
|
@include setup.setup-theme;
|
|
|
|
|
}
|