From 6f512d9f3623d71f344d602908d0c21bbd2bddb0 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sat, 20 Jan 2024 14:31:18 -0500 Subject: [PATCH] color tweaks --- src/stylelite.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/stylelite.css b/src/stylelite.css index 7af48c1..fb46b6b 100644 --- a/src/stylelite.css +++ b/src/stylelite.css @@ -8,9 +8,9 @@ --white: #FFF; --black: #000; - --gray: #DCDCDC; + --gray: #777; - --light: #f1f1f1; + --light: #EEE; --dark: #222; --theme: steelblue; @@ -222,7 +222,9 @@ button, input[type="reset"],input[type="submit"] { } button[disabled], button[disabled]:hover { - opacity: .5; + color: var(--gray); + background-color: var(--light); + border: 1px solid var(--gray); cursor: not-allowed; pointer-events: none; }