From d511955561e703da00d5a83b10b5e27df73e2821 Mon Sep 17 00:00:00 2001 From: Jelle Z <18423879+jelle619@users.noreply.github.com> Date: Wed, 12 Sep 2018 22:06:38 +0200 Subject: [PATCH 1/2] Fixed colour of embedded text in Ice Wyvern theme Changed the colour to black to make it more readable. --- webapp/titanembeds/static/themes/IceWyvern/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/webapp/titanembeds/static/themes/IceWyvern/css/style.css b/webapp/titanembeds/static/themes/IceWyvern/css/style.css index e23b4e3..64299dc 100644 --- a/webapp/titanembeds/static/themes/IceWyvern/css/style.css +++ b/webapp/titanembeds/static/themes/IceWyvern/css/style.css @@ -176,6 +176,14 @@ nav a { background-color: rgba(0, 0, 0, 0.4); } +.field-content, .description { + color: black; +} + +.footer { + color: rgb(100,100,100); +} + a { color: #4688f7; } From 47132ff18758dd0e61a08bc7f5daf09208e9d7b5 Mon Sep 17 00:00:00 2001 From: Jelle Z <18423879+jelle619@users.noreply.github.com> Date: Wed, 12 Sep 2018 22:15:28 +0200 Subject: [PATCH 2/2] Fixed text colour of blockcode Changed the colour to a darker grey --- webapp/titanembeds/static/themes/IceWyvern/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/titanembeds/static/themes/IceWyvern/css/style.css b/webapp/titanembeds/static/themes/IceWyvern/css/style.css index 64299dc..d7bbab0 100644 --- a/webapp/titanembeds/static/themes/IceWyvern/css/style.css +++ b/webapp/titanembeds/static/themes/IceWyvern/css/style.css @@ -180,8 +180,8 @@ nav a { color: black; } -.footer { - color: rgb(100,100,100); +.footer, code.blockcode { + color: rgb(100,100,100) } a {