From 3507fe8e214d2c54ae2d68a825486a9dfd6d05cc Mon Sep 17 00:00:00 2001 From: Jeffrey Holland Date: Fri, 12 Dec 2025 21:24:36 +0100 Subject: [PATCH] Make proper color fix for dark theme only --- .../src/autofill/overlay/inline-menu/pages/list/list.css | 6 +++--- libs/components/src/tw-theme-variables.css | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/browser/src/autofill/overlay/inline-menu/pages/list/list.css b/apps/browser/src/autofill/overlay/inline-menu/pages/list/list.css index 8cd3360dc3f..1d337d6f6ff 100644 --- a/apps/browser/src/autofill/overlay/inline-menu/pages/list/list.css +++ b/apps/browser/src/autofill/overlay/inline-menu/pages/list/list.css @@ -29,7 +29,7 @@ body { font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 400; color: rgb(var(--color-text-main)); - background-color: rgb(var(--color-background-alt2)); + background-color: rgb(var(--color-background)); } body * { @@ -62,7 +62,7 @@ body * { transition: background-color 0.2s ease-in-out; border-top-width: 0.1rem; border-top-style: solid; - background: rgb(var(--color-background)); + background: rgb(var(--color-background-alt2)); border-top-color: rgb(var(--color-secondary-300)); } @@ -199,7 +199,7 @@ body * { } .inline-menu-list-actions-item:hover { - background: rgb(var(--color-background)); + background: var(--color-hover-contrast); } .inline-menu-list-actions-item .cipher-container { diff --git a/libs/components/src/tw-theme-variables.css b/libs/components/src/tw-theme-variables.css index 326b8690589..591c9bb775d 100644 --- a/libs/components/src/tw-theme-variables.css +++ b/libs/components/src/tw-theme-variables.css @@ -86,9 +86,9 @@ --color-transparent-hover: rgb(255 255 255 / 0.02); --color-shadow: 0 0 0; - --color-background: 32 39 51; + --color-background: 47 52 61; --color-background-alt: 18 26 39; - --color-background-alt2: 47 52 61; + --color-background-alt2: 32 39 51; --color-background-alt3: 48 57 70; --color-background-alt4: 18 26 39;