mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-28 06:22:26 -05:00
This pull request adds four new themes with auto light/dark switching options too! Tested for color contrast etc in firefox with all three local test rig accounts. Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4199 Co-authored-by: tobi <tobi.smethurst@protonmail.com> Co-committed-by: tobi <tobi.smethurst@protonmail.com>
10 lines
344 B
CSS
10 lines
344 B
CSS
/*
|
|
theme-title: Hacker (auto)
|
|
theme-description: Monospace theme with green highlights (adapts to system light/dark preferences)
|
|
*/
|
|
|
|
/* Default to dark theme */
|
|
@import url("hacker-dark.css");
|
|
|
|
@import url("hacker-light.css") screen and (prefers-color-scheme: light);
|
|
@import url("hacker-dark.css") screen and (prefers-color-scheme: dark);
|