blob: 609aab5084b352b2cb1bf1efaf7846600b0c25ce (
plain)
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
|
style "terminal"
{
bg[NORMAL] = @bg_color
bg[ACTIVE] = @bg_color
bg[PRELIGHT] = @bg_color
bg[SELECTED] = @bg_color
base[NORMAL] = @bg_color
}
style "terminal-notebook"
{
bg[NORMAL] = darker(@window_active_color) # bg selected tab
bg[ACTIVE] = @window_active_color
fg[NORMAL] = @fg_color # text selected tab
fg[ACTIVE] = @bg_color
engine "murrine"
{
contrast = 0.0
}
}
style "notebook-button" {
xthickness = 0
ythickness = 0
bg[ACTIVE] = shade (0.68, @sidebar_background)
bg[PRELIGHT] = shade (0.75, @sidebar_background)
engine "murrine"
{
gradient_shades = {1.00,1.00,1.00,1.00}
contrast = 0.6
roundness = 0
}
}
class "*TerminalWindow" style "terminal"
widget_class "TerminalWindow*GtkNotebook" style "terminal-notebook"
widget_class "TerminalWindow*<GtkNotebook>*<GtkLabel>" style "terminal-notebook"
widget_class "TerminalWindow*<GtkNotebook>*<GtkButton>" style "notebook-button"
|