From dd13667ef7825708ddaaa8018f019218a837ed8f Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sat, 25 Jan 2020 15:30:32 +0100 Subject: [PATCH] CSS: Declare text color to default black Because background color is defined, the text may be not readable if users changed their default colors in the "Preferences" page of Firefox. So to ensure the text can be read if the defaults are changed, the text color too should be declared. --- preview.css | 1 + 1 file changed, 1 insertion(+) diff --git a/preview.css b/preview.css index 530c93e..7aed949 100644 --- a/preview.css +++ b/preview.css @@ -1,6 +1,7 @@ html { font: 3mm tahoma,arial,helvetica,sans-serif; background-color: rgb(240, 240, 240); + color: rgb(0, 0, 0); box-sizing: border-box; }