15 lines
505 B
Text
15 lines
505 B
Text
//
|
|
// Dark Theme CSS for use inside of a media query. This will apply the dark
|
|
// style except when overriden by a .light-theme class on the <html> tag.
|
|
//
|
|
// To use this, add a <link> like the following (change the media query how you
|
|
// want):
|
|
//
|
|
// <link rel="stylesheet" type="text/css"
|
|
// media="(prefers-color-scheme: dark)"
|
|
// href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/stylesheet/dark-theme-class.min.css">
|
|
//
|
|
|
|
html:not(.light-theme) {
|
|
@import (multiple) "dark-theme-styles.less";
|
|
}
|