mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 12:39:04 +01:00
12 lines
381 B
CSS
12 lines
381 B
CSS
/* Import the light color scheme.
|
|
* This is the base color scheme, always active and overridden by the dark
|
|
* color scheme stylesheet when necessary. */
|
|
@import url(./theme-next-light.css);
|
|
|
|
/* Import the dark color scheme when the system preference is set to dark mode */
|
|
@import url(./theme-next-dark.css) (prefers-color-scheme: dark);
|
|
|
|
:root {
|
|
--theme-style-auto: true;
|
|
}
|