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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
style "menubar" {
bg[NORMAL] = "#e7e8eb"
fg[NORMAL] = "#70788d"
fg[PRELIGHT] = "#70788d"
fg[ACTIVE] = "#70788d"
fg[SELECTED] = @selected_fg_color
fg[INSENSITIVE] = shade(1.3, "#70788d")
xthickness = 0
ythickness = 0
engine "pixmap" {
image {
function = BOX
file = "menubar-toolbar/menubar.png"
stretch = TRUE
border = { 1, 1, 1, 1 }
}
}
}
style "menubar-borderless" {
bg[NORMAL] = "#e7e8eb"
fg[NORMAL] = "#70788d"
fg[SELECTED] = @fg_color
fg[INSENSITIVE] = shade(1.3, "#70788d")
xthickness = 0
ythickness = 0
engine "pixmap" {
image {
function = BOX
file = "assets/null.png"
stretch = TRUE
border = { 1, 1, 1, 1 }
}
}
}
style "menubar_item" {
xthickness = 2
ythickness = 4
fg[PRELIGHT] = @selected_fg_color
engine "pixmap" {
image {
function = BOX
state = PRELIGHT
file = "menubar-toolbar/menubar_button.png"
border = { 2, 2, 2, 2 }
stretch = TRUE
}
}
}
# Text Style Menubar
style "menubar-text" {
engine "murrine" {
text_shade = 0.0
textstyle = 0
}
}
style "toolbar_entry" {
text[NORMAL] = "#70788d"
engine "pixmap" {
image {
function = SHADOW
state = NORMAL
detail = "entry"
file = "menubar-toolbar/entry-toolbar.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = SHADOW
state = ACTIVE
detail = "entry"
file = "menubar-toolbar/entry-active-toolbar.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = SHADOW
state = INSENSITIVE
detail = "entry"
file = "menubar-toolbar/entry-disabled-toolbar.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
}
}
#Chromium
style "chrome-gtk-frame" {
ChromeGtkFrame::frame-color = "#e7e8eb"
ChromeGtkFrame::inactive-frame-color = "#e7e8eb"
ChromeGtkFrame::frame-gradient-size = 0
ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color)
ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color)
ChromeGtkFrame::incognito-inactive-frame-color = @bg_color
ChromeGtkFrame::incognito-frame-gradient-color = @bg_color
ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color)
ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color)
ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color
}
widget_class "*<GtkMenuBar>*" style "menubar"
widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item"
widget_class "*ThunarWindow*<GtkToolbar>" style "menubar"
widget_class "*CajaNavigationWindow*<GtkToolbar>" style "menubar"
class "ChromeGtkFrame" style "chrome-gtk-frame"
widget_class "*<GtkMenuBar>*<GtkMenuItem>*<GtkAccelLabel>" style "menubar-text"
# Whitelist for dark toolbars
widget_class "*ThunarWindow*<GtkMenuBar>" style "menubar-borderless"
widget_class "*CajaNavigationWindow*<GtkMenuBar>" style "menubar-borderless"
widget_class "*ThunarWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry"
widget_class "*CajaNavigationWindow*<GtkToolbar>*<GtkEntry>" style "toolbar_entry"
|