Bluesky app fork with some witchin' additions 💫

fix: add back style (so the background color continues!!)

still need to replace the loading screen with witchsky's color instead of bluesky, but it's back to being fixed! I should've listened to lewis when he said to not remove this! I should've known!

xan.lol 10c8e657 8c3553cd

verified
+35 -2
+35 -2
src/style.css
··· 11 11 * 12 12 * HTML & BODY STYLES IN `web/index.html` and `bskyweb/templates/base.html` 13 13 */ 14 + :root { 15 + --text: black; 16 + --background: #fefbfb; 17 + --backgroundLight: #fefbfb; 18 + } 19 + @media (prefers-color-scheme: dark) { 20 + :root { 21 + color-scheme: dark; 22 + --text: white; 23 + --background: #222020; 24 + --backgroundLight: #222020; 25 + } 26 + } 14 27 28 + html.theme--light { 29 + --text: black; 30 + --background: #fefbfb; 31 + --backgroundLight: #fefbfb; 32 + background-color: #fefbfb; 33 + } 34 + html.theme--dark { 35 + color-scheme: dark; 36 + background-color: #000000; 37 + --text: white; 38 + --background: #000000; 39 + --backgroundLight: #000000; 40 + } 41 + html.theme--dim { 42 + color-scheme: dark; 43 + background-color: #222020; 44 + --text: white; 45 + --background: #222020; 46 + --backgroundLight: #222020; 47 + } 15 48 /* Buttons and inputs have a font set by UA, so we'll have to reset that */ 16 49 button, 17 50 input, ··· 75 108 pointer-events: none; 76 109 } 77 110 .ProseMirror .mention { 78 - color: #ED5345; 111 + color: #ed5345; 79 112 } 80 113 .ProseMirror a, 81 114 .ProseMirror .autolink { 82 - color: #ED5345; 115 + color: #ed5345; 83 116 } 84 117 /* OLLIE: TODO -- this is not accessible */ 85 118 /* Remove focus state on inputs */