mirror of
https://github.com/kognise/water.css.git
synced 2025-12-06 06:44:58 +01:00
13 lines
390 B
CSS
13 lines
390 B
CSS
/**
|
|
* Dark-themed version:
|
|
* uses dark theme by default but switches to light theme
|
|
* if a system-wide theme preference is set on the user's device.
|
|
*
|
|
* Variables will remain uncompiled so the theme can update dynamically
|
|
* at runtime in the browser.
|
|
*/
|
|
|
|
@import '../variables-dark.css';
|
|
@import '../variables-light.css' (prefers-color-scheme: light);
|
|
|
|
@import '../parts/_core.css';
|