Web: set colours on the html & body element

Setting the CSS `color` and `background-color` properties on the top-level
elements will make Firefox understand the dark theme, and colour the scroll
bar appropriately.
This commit is contained in:
Sybren A. Stüvel 2022-04-15 14:25:30 +02:00
parent 1535d7531b
commit 5c28fcd1b7

@ -137,14 +137,15 @@ export default {
body {
margin: 0;
color: #EEEEEE;
background-color: #222222;
}
#app {
font-family: 'Noto Sans', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #EEEEEE;
background-color: #222222;
display: grid;
width: 100%;