37 lines
974 B
CSS
37 lines
974 B
CSS
/* private colors */
|
|
|
|
#main-window[privatebrowsingmode="temporary"] {
|
|
--cust-accent: color-mix(in srgb, purple 60%, black);
|
|
--cust-accent-dark: color-mix(in srgb, var(--cust-accent) 50%, black);
|
|
--cust-accent-darker: color-mix(in srgb, var(--cust-accent) 35%, black);
|
|
--cust-accent-text: color-mix(in srgb, var(--cust-accent) 50%, white);
|
|
|
|
#TabsToolbar,
|
|
.urlbarView-row:is([selected]),
|
|
::-moz-selection {
|
|
background-color: var(--cust-accent) !important;
|
|
}
|
|
|
|
#titlebar,
|
|
.browser-toolbar,
|
|
.tab-background:is([selected], [multiselected]) {
|
|
background-color: var(--cust-accent-dark) !important;
|
|
|
|
&:-moz-window-inactive {
|
|
opacity: .85 !important;
|
|
}
|
|
}
|
|
|
|
#urlbar-background,
|
|
#searchbar,
|
|
.panel-viewcontainer {
|
|
outline: none !important;
|
|
border: none !important;
|
|
background-color: var(--cust-accent-darker) !important;
|
|
}
|
|
|
|
.urlbarView-url {
|
|
color: var(--cust-accent-text) !important;
|
|
}
|
|
|
|
} |