aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-10-28 20:27:24 +0200
committerJakob Unterwurzacher2017-10-28 20:27:24 +0200
commitfe2e0954ee4e6c35b6c6509fd0ba29fd81261c92 (patch)
tree92d37c45b1c65646bf2c9b968e0c931eabf0497c
parentf6d6878a6788ece6b243c517d5b68d7e90b494f2 (diff)
css: black text color for better contrast
-rw-r--r--xreadthedocs/css/theme_extra.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/xreadthedocs/css/theme_extra.css b/xreadthedocs/css/theme_extra.css
index bb41100..483b7f9 100644
--- a/xreadthedocs/css/theme_extra.css
+++ b/xreadthedocs/css/theme_extra.css
@@ -230,3 +230,8 @@ html, body {
/* make sure long tables are not cut off */
overflow-x: auto !important;
}
+
+body {
+ /* default is a dark gray. Let's have better contrast. */
+ color: black;
+}