37 lines
931 B
CSS
37 lines
931 B
CSS
/* main colors */
|
|
|
|
#main-window {
|
|
--cust-accent: AccentColor;
|
|
--cust-accent-dark: color-mix(in srgb, var(--cust-accent) 50%, black);
|
|
--cust-accent-darker: color-mix(in srgb, var(--cust-accent) 30%, 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,.urlbarView-action {
|
|
color: var(--cust-accent-text) !important;
|
|
}
|
|
|
|
} |