feat: auto switch dark-light themes

ref: #1
This commit is contained in:
Lucas Colombo 2024-04-12 21:46:15 -03:00
parent c909a416b3
commit a4d75356eb
No known key found for this signature in database
GPG Key ID: EF34786CFEFFAE35
3 changed files with 8 additions and 1 deletions

View File

@ -12,6 +12,10 @@
![light theme](figs/light.png)
## `auto`
Switches between `dark` and `light` automatically based on the user's system preference.
## Usage
1. Clone this repo
@ -20,7 +24,7 @@
```ini
[ui]
THEMES=...,dark,light
THEMES=...,dark,light,auto
DEFAULT_THEME=dark # optional
```

1
dist/public/assets/css/theme-auto.css vendored Normal file
View File

@ -0,0 +1 @@
@import "./theme-light.css"(prefers-color-scheme:light);@import "./theme-dark.css"(prefers-color-scheme:dark);

View File

@ -0,0 +1,2 @@
@import "./theme-light.css" (prefers-color-scheme: light);
@import "./theme-dark.css" (prefers-color-scheme: dark);