Fix private window in light theme

Colors: Window controls: Don't use opaque color
Config: Set browser.theme.dark-private-windows to false

Fixes #541
This commit is contained in:
Rafael Mardojai CM 2023-01-19 11:12:37 -05:00
parent 1847c80fd6
commit 5236cb7be0
No known key found for this signature in database
GPG Key ID: 2B2DAB2A58566C84
2 changed files with 5 additions and 1 deletions

View File

@ -10,3 +10,7 @@ user_pref("browser.uidensity", 0);
// Enable SVG context-propertes // Enable SVG context-propertes
user_pref("svg.context-properties.content.enabled", true); user_pref("svg.context-properties.content.enabled", true);
// Disable private window dark theme
user_pref("browser.theme.dark-private-windows", false);

View File

@ -48,7 +48,7 @@
--gnome-button-suggested-action-background: var(--gnome-accent-bg); --gnome-button-suggested-action-background: var(--gnome-accent-bg);
--gnome-button-destructive-action-background: #e01b24; --gnome-button-destructive-action-background: #e01b24;
--gnome-button-close-background: #d8d8d8; --gnome-button-close-background: var(--gnome-button-background);
--gnome-button-hover-close-background:var(--gnome-button-hover-background); --gnome-button-hover-close-background:var(--gnome-button-hover-background);
--gnome-button-active-close-background: var(--gnome-button-active-background); --gnome-button-active-close-background: var(--gnome-button-active-background);