From 3e93cc7ffbca15884c60c2d8f8c32d67c4bd7767 Mon Sep 17 00:00:00 2001 From: Alvie Rahman Date: Thu, 9 Nov 2023 13:43:43 +0000 Subject: [PATCH] update foreground color on placeholders, inputs, selects, buttons --- base.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/base.css b/base.css index 07a1446..50beea5 100644 --- a/base.css +++ b/base.css @@ -104,6 +104,7 @@ kbd { } input, select, button { + color: var(--fg-lc); background: var(--bg); border: 1px solid var(--fg); border-radius: 0.5em; @@ -111,6 +112,10 @@ input, select, button { margin: 0.5em; } +::placeholder { + color: var(--fg-lc); +} + /* scrollbar */ ::-webkit-scrollbar {