From 2bc65698563f2b7185399a622595fb2f73bec52e Mon Sep 17 00:00:00 2001 From: blek Date: Wed, 6 Sep 2023 21:24:53 +1000 Subject: [PATCH] tweak input element colors --- src/InputElement.svelte | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/InputElement.svelte b/src/InputElement.svelte index 7fd10d6..f23594f 100644 --- a/src/InputElement.svelte +++ b/src/InputElement.svelte @@ -36,9 +36,11 @@ } .input-status-input { background: #8284a220; + border-color: #8284a220; } .input-status-standby { background: transparent; + border-color: transparent; } .input-status-yellow { background: #f3c237; @@ -50,22 +52,19 @@ } @media (prefers-color-scheme: light) { .wordle-input-element { - border-color: #919191; color: white } .input-status-input { background: #f1f6f6; color: black; - border-color: #c1c1c1; + border-color: #e6efef; } .input-status-standby { background: #919191; } .input-status-unfit { background: #b2b4c2; - } - .input-status-green, .input-status-yellow, .input-status-unfit { - border-color: #a1a1a1; + border-color: #b2b4c2 !important; } } \ No newline at end of file