forked from qgis/qwc2-demo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleConfig.js
36 lines (35 loc) · 1017 Bytes
/
styleConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const styleConfig = {
// Base foreground (text) color
base_fg: "#595959",
// Top and bottom panels
panel_bg: "rgba(255, 255, 255, 0.75)",
panel_fg: "#595959",
// Titlebars
titlebar_bg: "#595959",
titlebar_fg: "white",
// Containers (i.e. dialogs, sidebars)
container_bg: "#f8f8f8",
// Buttonbar buttons
button_bg: "#e9e9e9",
button_hover_bg: "#dcdcdc",
// appmenu (1: main level, 2: sublevel)
appmenu_bg1: "#f2f2f2",
appmenu_fg1: "#595959",
appmenu_active_bg1: "white",
appmenu_active_fg1: "#595959",
appmenu_bg2: "#808080",
appmenu_fg2: "white",
appmenu_active_bg2: "#a0a0a0",
appmenu_active_fg2: "white",
// Map buttons
map_button_bg: "#595959",
map_button_fg: "white",
map_button_active_bg: "#f2f2f2",
map_button_active_fg: "#595959",
// Generic
item_border: "#bbb",
item_active: "#078aa3",
item_active_hover: "#05768a",
item_inactive_hover: "#dcdcdc"
};
module.exports = styleConfig;