From 52d45d482c763769788fb7ab005004c69bed0fb9 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Thu, 21 Oct 2021 00:55:40 +0200 Subject: [PATCH] Change dark mode input fill color (#10341) --- src/resources/styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resources/styles.ts b/src/resources/styles.ts index 85e1857d91..f9c7013fd5 100644 --- a/src/resources/styles.ts +++ b/src/resources/styles.ts @@ -20,8 +20,8 @@ export const darkStyles = { "input-outlined-idle-border-color": "rgba(255, 255, 255, 0.38)", "input-outlined-hover-border-color": "rgba(255, 255, 255, 0.87)", "input-outlined-disabled-border-color": "rgba(255, 255, 255, 0.06)", - "input-fill-color": "rgb(10, 10, 10)", - "input-disabled-fill-color": "rgb(5, 5, 5)", + "input-fill-color": "rgba(255, 255, 255, 0.05)", + "input-disabled-fill-color": "rgba(255, 255, 255, 0.02)", "input-ink-color": "rgba(255, 255, 255, 0.87)", "input-label-ink-color": "rgba(255, 255, 255, 0.6)", "input-disabled-ink-color": "rgba(255, 255, 255, 0.37)",