-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgtk.css
70 lines (59 loc) · 1.56 KB
/
gtk.css
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
/* Global color definitions */
@define-color window_bg_color #000000;
@define-color window_fg_color #f8f8f2;
@define-color view_bg_color #000000;
@define-color view_fg_color @window_fg_color;
@define-color accent_bg_color #1161cb;
@define-color accent_color @accent_bg_color;
@define-color headerbar_bg_color @window_bg_color;
@define-color headerbar_fg_color @window_fg_color;
@define-color popover_bg_color #101010;
@define-color popover_fg_color @view_fg_color;
@define-color dialog_bg_color @popover_bg_color;
@define-color dialog_fg_color @popover_fg_color;
@define-color card_bg_color rgba(255, 255, 255, 0.05);
@define-color card_fg_color @window_fg_color;
/* More customizations */
button.titlebutton { /* GTK3 */
color: transparent;
min-width: 18px;
min-height: 18px;
}
button.titlebutton:backdrop {
opacity: 0.5;
}
windowcontrols > button { /* GTK4 */
color: transparent;
min-width: 2px;
min-height: 2px;
border-radius: 100%;
padding: 0;
margin: 0 5px;
}
windowcontrols > button > image {
padding: 0;
}
button.titlebutton.close,
windowcontrols > button.close {
background-color: #606060;
}
button.titlebutton.close:hover,
windowcontrols > button.close:hover {
opacity: 0.8;
}
button.titlebutton.maximize,
windowcontrols > button.maximize {
background-color: #606060;
}
button.titlebutton.maximize:hover,
windowcontrols > button.maximize:hover {
opacity: 0.8;
}
button.titlebutton.minimize,
windowcontrols > button.minimize {
background-color: #606060;
}
button.titlebutton.minimize:hover,
windowcontrols > button.minimize:hover {
opacity: 0.8;
}