From 462481a5003cd68858dde2d0003cbeedafb86ff5 Mon Sep 17 00:00:00 2001 From: toastal <561087+toastal@users.noreply.github.com> Date: Thu, 25 Nov 2021 10:35:14 +0000 Subject: [PATCH] Set default background color I have black-on-black text issues with Firefox on Linux with a dark GTK theme. If a default color is set, a default background should also be set. --- static/assets/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/assets/style.css b/static/assets/style.css index a000893e..58862ac7 100644 --- a/static/assets/style.css +++ b/static/assets/style.css @@ -3,6 +3,7 @@ html, head, body, pre { } body { + background: #fff; font-family: 'IBM Plex Sans', sans-serif; color: #000E16; line-height: 1.5;