diff options
Diffstat (limited to 'comm/suite/modules/ThemeVariableMap.jsm')
-rw-r--r-- | comm/suite/modules/ThemeVariableMap.jsm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/comm/suite/modules/ThemeVariableMap.jsm b/comm/suite/modules/ThemeVariableMap.jsm new file mode 100644 index 0000000000..8da6c4e476 --- /dev/null +++ b/comm/suite/modules/ThemeVariableMap.jsm @@ -0,0 +1,29 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +var EXPORTED_SYMBOLS = ["ThemeVariableMap"]; + +const ThemeVariableMap = [ + ["--lwt-accent-color-inactive", "accentcolorInactive"], + ["--lwt-background-alignment", "backgroundsAlignment"], + ["--lwt-background-tiling", "backgroundsTiling"], + ["--tab-loading-fill", "tab_loading"], + ["--lwt-tab-text", "tab_text"], + ["--toolbar-bgcolor", "toolbarColor"], + ["--toolbar-color", "toolbar_text"], + ["--url-and-searchbar-background-color", "toolbar_field"], + ["--url-and-searchbar-color", "toolbar_field_text"], + ["--lwt-toolbar-field-border-color", "toolbar_field_border"], + ["--urlbar-separator-color", "toolbar_field_separator"], + ["--tabs-border-color", "toolbar_top_separator"], + ["--lwt-toolbar-vertical-separator", "toolbar_vertical_separator"], + ["--toolbox-border-bottom-color", "toolbar_bottom_separator"], + ["--lwt-toolbarbutton-icon-fill", "icon_color"], + ["--lwt-toolbarbutton-icon-fill-attention", "icon_attention_color"], + ["--lwt-toolbarbutton-hover-background", "button_background_hover"], + ["--lwt-toolbarbutton-active-background", "button_background_active"], + ["--arrowpanel-background", "popup"], + ["--arrowpanel-color", "popup_text"], + ["--arrowpanel-border-color", "popup_border"], +]; |