mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 03:12:24 -05:00
11 lines
383 B
CSS
11 lines
383 B
CSS
|
|
/*
|
||
|
|
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);
|