picocss/scss/themes/default.scss
Caesar Exploit ac7ed99ecf
variable file does not exist
There is no file with the variable name in that path.
2022-04-21 17:00:42 -05:00

28 lines
528 B
SCSS

/**
* Theme: default
*/
// Variables
@import "default/colors";
// Commons styles
@import "default/styles";
// Light theme (Default)
// Can be forced with data-theme="light"
@import "default/light";
// Dark theme (Auto)
// Automatically enabled if user has Dark mode enabled
@import "default/dark";
@media only screen and (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) {
@include dark;
}
}
// Dark theme (Forced)
// Enabled if forced with data-theme="dark"
[data-theme="dark"] {
@include dark;
}