Merge pull request #2 from lucas-labs/1-auto-switch-between-dark-and-light-theme

feat:  auto switch dark-light themes
pull/5/head
Lucas Colombo 11 months ago committed by GitHub
commit 146ee5e781
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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
```

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

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