From ccb60b64f1bb2c043ca243a3db82dfa902b5ceb1 Mon Sep 17 00:00:00 2001 From: ElementalAlchemist Date: Fri, 29 Oct 2021 21:01:39 -0500 Subject: [PATCH] Fix error styling for dark theme --- thrimbletrimmer/styles/thrimbletrimmer.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/thrimbletrimmer/styles/thrimbletrimmer.css b/thrimbletrimmer/styles/thrimbletrimmer.css index 130d357..2ba78f2 100644 --- a/thrimbletrimmer/styles/thrimbletrimmer.css +++ b/thrimbletrimmer/styles/thrimbletrimmer.css @@ -41,14 +41,14 @@ a, } #errors { - color: #b00; + color: #f33; display: flex; flex-direction: column; } #errors > div { - border-bottom: 1px solid #b00; - background: #fee; + border-bottom: 1px solid #f33; + background: #300; padding: 4px; }