summaryrefslogtreecommitdiff
path: root/themes/iroha/gtk/gtk3-dark.css
blob: 134b7c0922d72ab03729d818cc1e4ca6ee88f163 (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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* Peninsula-dark from adw-colors */
@define-color window_bg_color #000000;
@define-color window_fg_color #eeeeee;
@define-color view_bg_color @window_bg_color;
@define-color view_fg_color @window_fg_color;
@define-color accent_bg_color #af5f00;
@define-color accent_fg_color white;
@define-color headerbar_bg_color @window_bg_color;
@define-color headerbar_fg_color @window_fg_color;
@define-color headerbar_backdrop_color @window_bg_color;
@define-color popover_bg_color @window_bg_color;
@define-color popover_fg_color @view_fg_color;
@define-color dialog_bg_color @window_bg_color;
@define-color dialog_fg_color @view_fg_color;
@define-color card_bg_color @window_bg_color;
@define-color card_fg_color @view_fg_color;
@define-color sidebar_bg_color @window_bg_color;
@define-color sidebar_fg_color @window_fg_color;
@define-color sidebar_backdrop_color @window_bg_color;
@define-color sidebar_shade_color rgba(0, 0, 0, 0.25);
@define-color sidebar_border_color rgba(0, 0, 0, 0.36);
@define-color destructive_bg_color #d75f00;
@define-color success_bg_color #005f5f;
@define-color warning_bg_color #ffd75f;
@define-color error_bg_color @destructive_bg_color;
decoration {
  box-shadow: 0 3px 12px 1px rgba(0, 0, 0, 0.7), 0 0 0 1px mix(white, @window_bg_color, 0.82);
}
decoration:backdrop {
  box-shadow: 0 3px 12px 1px transparent, 0 2px 6px 2px rgba(0, 0, 0, 0.4), 0 0 0 1px mix(white, @window_bg_color, 0.95);
}
.tiled decoration, .tiled-top decoration, .tiled-bottom decoration, .tiled-right decoration, .tiled-left decoration {
  box-shadow: 0 0 0 1px mix(white, @window_bg_color, 0.95), 0 0 0 20px transparent;
}
messagedialog.csd decoration, .csd.popup decoration, .maximized .csd.popup decoration {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 0 1px alpha(mix(white, @window_bg_color, 0.82), 0.9);
}
tooltip.csd decoration {
  box-shadow: none;
}
.maximized decoration, .fullscreen decoration {
  border-radius: 0;
  box-shadow: none;
}
.ssd decoration {
  box-shadow: 0 0 0 1px mix(white, @window_bg_color, 0.82);
}
.ssd decoration:backdrop {
  box-shadow: 0 0 0 1px mix(white, @window_bg_color, 0.95);
}
.ssd.maximized decoration, .ssd.maximized decoration:backdrop {
  box-shadow: none;
}
.solid-csd decoration {
  box-shadow: inset 0 0 0 5px alpha(currentColor, 0.5), inset 0 0 0 4px @headerbar_bg_color, inset 0 0 0 1px alpha(currentColor, 0.5);
}
.solid-csd decoration:backdrop {
  box-shadow: inset 0 0 0 3px @window_bg_color;
}

button.titlebutton {
  min-width: 18px;
  min-height: 18px;
  border-radius: 24px;
  color: transparent;
}

button.titlebutton {
  margin: 0 4px;
  border-width: 0;
}
button.titlebutton.close {
  box-shadow: inset 0 0 0 6px @destructive_bg_color;
}
button.titlebutton.close:hover {
  box-shadow: inset 0 0 0 8px mix(white, @destructive_bg_color, 0.7);
}
button.titlebutton.close:active {
  background-color: mix(white, @destructive_bg_color, 0.5);
  box-shadow: none;
}
button.titlebutton.maximize {
  box-shadow: inset 0 0 0 6px @success_bg_color;
}
button.titlebutton.maximize:hover {
  box-shadow: inset 0 0 0 4px mix(white, @success_bg_color, 0.7);
}
button.titlebutton.maximize:active {
  background-color: mix(white, @success_bg_color, 0.5);
  box-shadow: none;
}
button.titlebutton.minimize {
  box-shadow: inset 0 0 0 6px @warning_bg_color;
}
button.titlebutton.minimize:hover {
  box-shadow: inset 0 0 0 8px mix(white, @warning_bg_color, 0.7);
}
button.titlebutton.minimize:active {
  background-color: mix(white, @warning_bg_color, 0.5);
  box-shadow: none;
}

.maximized button.titlebutton.maximize {
  box-shadow: inset 0 0 0 6px @success_bg_color;
}
.maximized button.titlebutton.maximize:hover {
  box-shadow: inset 0 0 0 8px mix(white, @success_bg_color, 0.7);
}
.maximized button.titlebutton.maximize:active {
  background-color: mix(white, @success_bg_color, 0.5);
  box-shadow: none;
}

button.titlebutton:backdrop {
  opacity: 0.5;
}
button.titlebutton:backdrop.close {
  box-shadow: inset 0 0 0 6px alpha(@headerbar_fg_color, 0.15);
}
button.titlebutton:backdrop.close:hover {
  box-shadow: inset 0 0 0 8px mix(white,@destructive_bg_color, 0.7);
}
button.titlebutton:backdrop.close:active {
  background-color: mix(white, @destructive_bg_color, 0.5);
  box-shadow: none;
}
button.titlebutton:backdrop.maximize {
  box-shadow: inset 0 0 0 6px alpha(@headerbar_fg_color, 0.15);
}
button.titlebutton:backdrop.maximize:hover {
  box-shadow: inset 0 0 0 4px mix(white,@success_bg_color, 0.7);
}
button.titlebutton:backdrop.maximize:active {
  background-color: mix(white, @success_bg_color, 0.5);
  box-shadow: none;
}
button.titlebutton:backdrop.minimize {
  box-shadow: inset 0 0 0 6px alpha(@headerbar_fg_color, 0.15);
}
button.titlebutton:backdrop.minimize:hover {
  box-shadow: inset 0 0 0 8px mix(white, @warning_bg_color, 0.7);
}
button.titlebutton:backdrop.minimize:active {
  background-color: mix(white, @warning_bg_color, 0.5);
  box-shadow: none;
}

.maximized button.titlebutton:backdrop.maximize {
  box-shadow: inset 0 0 0 6px alpha(@headerbar_fg_color, 0.15);
}
.maximized button.titlebutton:backdrop.maximize:hover {
  box-shadow: inset 0 0 0 8px mix(white, @success_bg_color, 0.7);
}
.maximized button.titlebutton:backdrop.maximize:active {
  background-color: mix(white, @success_bg_color, 0.5);
  box-shadow: none;
}