From 7d982b96c91323057c34f23d20227ce77595867e Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 10 Feb 2021 23:28:24 -0600 Subject: [PATCH] tweak text colors; less normal, more bold --- incorporealcms/static/css/dark.css | 6 +++++- incorporealcms/static/css/light.css | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/incorporealcms/static/css/dark.css b/incorporealcms/static/css/dark.css index 6d9eb5f..ebec94a 100644 --- a/incorporealcms/static/css/dark.css +++ b/incorporealcms/static/css/dark.css @@ -1,11 +1,15 @@ html { - color: #DDD; + color: #CCC; } body { background: black; } +strong { + color: #EEE; +} + .site-wrap { background: #111; diff --git a/incorporealcms/static/css/light.css b/incorporealcms/static/css/light.css index 91f550f..c64ed43 100644 --- a/incorporealcms/static/css/light.css +++ b/incorporealcms/static/css/light.css @@ -3,7 +3,11 @@ html { } body { - background: #888; + background: #999; +} + +strong { + color: #111; } .site-wrap {