-
-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature/themes] Add auto-switching themes for blurple/brutalist/sola…
…rized (#3588)
- Loading branch information
CDN
authored
Dec 2, 2024
1 parent
44b7bc7
commit dce85a2
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* | ||
theme-title: Blurple (auto) | ||
theme-description: Official blurple theme that adapts to system preferences | ||
*/ | ||
|
||
/* Default to dark theme */ | ||
@import url("blurple-dark.css"); | ||
|
||
@import url("blurple-light.css") screen and (prefers-color-scheme: light); | ||
@import url("blurple-dark.css") screen and (prefers-color-scheme: dark); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* | ||
theme-title: Brutalist (auto) | ||
theme-description: Official (Pseudo-)monochrome brutality theme that adapts to system preferences | ||
*/ | ||
|
||
/* Default to brutalist theme */ | ||
@import url("brutalist.css"); | ||
|
||
@import url("brutalist.css") screen and (prefers-color-scheme: light); | ||
@import url("brutalist-dark.css") screen and (prefers-color-scheme: dark); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* | ||
theme-title: Solarized (auto) | ||
theme-description: Solarized theme that adapts to system preferences | ||
*/ | ||
|
||
/* Default to dark theme */ | ||
@import url("solarized-dark.css"); | ||
|
||
@import url("solarized-light.css") screen and (prefers-color-scheme: light); | ||
@import url("solarized-dark.css") screen and (prefers-color-scheme: dark); |