selfhostable, read-only reddit client
at main 824 B view raw
1/* 2Uncomment and modify the values in this file to change the theme of the app. 3 4:root { 5 --bg-color: white; 6 --bg-color-muted: #eee; 7 --text-color: black; 8 --text-color-muted: #999; 9 --blockquote-color: green; 10 --sticky-color: #dcfeda; 11 --gilded: darkorange; 12 --link-color: #29bc9b; 13 --link-visited-color: #999; 14 --accent: var(--link-color); 15 --error-text-color: red; 16 --border-radius-card: 0.5vmin; 17 --border-radius-media: 0.5vmin; 18 --border-radius-preview: 0.3vmin; 19} 20 21@media (prefers-color-scheme: dark) { 22 :root { 23 --bg-color: black; 24 --bg-color-muted: #333; 25 --text-color: white; 26 --text-color-muted: #999; 27 --blockquote-color: lightgreen; 28 --sticky-color: #014413; 29 --gilded: gold; 30 --link-color: #79ffe1; 31 --link-visited-color: #999; 32 --accent: var(--link-color); 33 --error-text-color: lightcoral; 34 } 35} 36*/