30 строки
1.4 KiB
JavaScript
30 строки
1.4 KiB
JavaScript
/* 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"],
|
|
];
|