2020-05-22 05:13:58 +00:00
|
|
|
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/color_variable_template.css made available under Mozilla Public License v. 2.0
|
|
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
|
2020-04-15 14:54:32 +00:00
|
|
|
/* You should enable any non-default theme for these to apply properly. Built-in dark and light themes should work */
|
|
|
|
:root{
|
|
|
|
/* Popup panels */
|
|
|
|
--arrowpanel-background: olive !important;
|
|
|
|
--arrowpanel-border-color: green !important;
|
|
|
|
--arrowpanel-color: cyan !important;
|
|
|
|
--arrowpanel-dimmed: rgba(0,0,0,0.4) !important;
|
|
|
|
/* window and toolbar background */
|
2022-04-19 08:02:26 +00:00
|
|
|
--lwt-accent-color: red !important;
|
|
|
|
--lwt-accent-color-inactive: green !important;
|
2021-12-06 07:40:10 +00:00
|
|
|
--toolbar-bgcolor: rgba(0,0,0,0.4) !important;
|
|
|
|
/* tabs with system theme - text is not controlled by variable */
|
|
|
|
--tab-selected-bgcolor: powderblue !important;
|
|
|
|
/* tabs with any other theme */
|
2020-04-15 14:54:32 +00:00
|
|
|
--lwt-text-color: cyan !important;
|
2021-12-06 07:40:10 +00:00
|
|
|
--lwt-selected-tab-background-color: cornflowerblue !important;
|
2020-04-15 14:54:32 +00:00
|
|
|
/* toolbar area */
|
2021-08-07 12:17:42 +00:00
|
|
|
--toolbarbutton-icon-fill: white !important;
|
2020-04-15 14:54:32 +00:00
|
|
|
--lwt-toolbarbutton-hover-background: orange !important;
|
|
|
|
--lwt-toolbarbutton-active-background: red !important;
|
|
|
|
/* urlbar */
|
2021-08-26 06:24:21 +00:00
|
|
|
--toolbar-field-border-color: green !important;
|
2020-04-15 14:54:32 +00:00
|
|
|
--toolbar-field-focus-border-color: pink !important;
|
2021-08-26 07:01:45 +00:00
|
|
|
--urlbar-popup-url-color: cyan !important;
|
|
|
|
/* urlbar Firefox < 92 */
|
|
|
|
--lwt-toolbar-field-background-color: olive !important;
|
|
|
|
--lwt-toolbar-field-focus: grey !important;
|
2020-04-15 14:54:32 +00:00
|
|
|
--lwt-toolbar-field-color: red !important;
|
|
|
|
--lwt-toolbar-field-focus-color: white !important;
|
2021-08-26 07:01:45 +00:00
|
|
|
/* urlbar Firefox 92+ */
|
|
|
|
--toolbar-field-background-color: olive !important;
|
|
|
|
--toolbar-field-focus-background-color: grey !important;
|
|
|
|
--toolbar-field-color: red !important;
|
|
|
|
--toolbar-field-focus-color: white !important;
|
2020-04-15 14:54:32 +00:00
|
|
|
/* sidebar - note the sidebar-box rule for the header-area */
|
|
|
|
--lwt-sidebar-background-color: purple !important;
|
|
|
|
--lwt-sidebar-text-color: yellow !important;
|
|
|
|
}
|
2022-04-19 08:02:26 +00:00
|
|
|
/* line between nav-bar and tabs toolbar,
|
|
|
|
also fallback color for border around selected tab */
|
|
|
|
#navigator-toolbox{ --lwt-tabs-border-color: cyan !important; }
|
2020-04-15 14:54:32 +00:00
|
|
|
/* Line above tabs */
|
2022-01-12 13:16:47 +00:00
|
|
|
#tabbrowser-tabs{ --lwt-tab-line-color: white !important; }
|
2020-04-15 14:54:32 +00:00
|
|
|
/* the header-area of sidebar needs this to work */
|
2022-04-19 08:02:26 +00:00
|
|
|
#sidebar-box{ --sidebar-background-color: purple !important; }
|