mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-28 21:22:25 -05:00
That's it! It just conditionally imports prism light or prism dark depending on the theme. Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4201 Co-authored-by: tobi <tobi.smethurst@protonmail.com> Co-committed-by: tobi <tobi.smethurst@protonmail.com>
10 lines
354 B
CSS
10 lines
354 B
CSS
/*
|
|
theme-title: Brutalist (auto)
|
|
theme-description: Official (Pseudo-)monochrome brutality theme that adapts to system preferences
|
|
*/
|
|
|
|
/* Default to brutalist theme */
|
|
@import url("brutalist-dark.css");
|
|
|
|
@import url("brutalist.css") screen and (prefers-color-scheme: light);
|
|
@import url("brutalist-dark.css") screen and (prefers-color-scheme: dark);
|