1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-30 16:23:53 +00:00

Make proper color fix for dark theme only

This commit is contained in:
Jeffrey Holland
2025-12-12 21:24:36 +01:00
parent 2a18225289
commit 3507fe8e21
2 changed files with 5 additions and 5 deletions

View File

@@ -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 {

View File

@@ -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;