[feature/frontend] Add four new monospace themes (#4199)

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>
This commit is contained in:
tobi 2025-05-29 11:48:34 +02:00 committed by tobi
commit 6c1b674278
11 changed files with 584 additions and 0 deletions

View file

@ -0,0 +1,10 @@
/*
theme-title: Programmer socks (auto)
theme-description: Monospace theme with pink highlights (adapts to system light/dark preferences)
*/
/* Default to dark theme */
@import url("programmer-socks-dark.css");
@import url("programmer-socks-light.css") screen and (prefers-color-scheme: light);
@import url("programmer-socks-dark.css") screen and (prefers-color-scheme: dark);