blob: 817a072489d25454b1566e7bcb09f379cec7e527 (
plain)
1
2
3
4
5
6
7
8
9
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);
|