1/**************************************************************************************
2This file is distributed under the GNU General Public License version 2 (a.k.a. GPL-v2)
3(c) 2019-2021 Virgil Mager - vvmager@gmail.com
4(c) 2019-2021 Information Technology Group - http://itgroup.ro
5**************************************************************************************/
6
7style "button" {
8	fg[ACTIVE] = shade(0.5, @button_fg_color)
9	bg[ACTIVE] = shade(0.92, @button_bg_color)
10	engine "murrine" {
11#		textstyle = 0
12	}
13}
14
15style "toolbar_button" {
16	fg[ACTIVE] = shade(0.5, @button_fg_color)
17	bg[ACTIVE] = shade(0.92, @button_bg_color)
18	engine "murrine" {
19#		textstyle = 0
20	}
21}
22
23style "treeview_header" {
24	fg[ACTIVE] = shade(0.5, @button_fg_color)
25	bg[ACTIVE] = shade(0.92, @button_bg_color)
26}
27
28style "combo_button" {
29	fg[ACTIVE] = shade(0.5, @button_fg_color)
30	bg[ACTIVE] = shade(0.92, @button_bg_color)
31}
32
33style "combobox" {
34	fg[ACTIVE] = shade(0.5, @button_fg_color)
35	bg[ACTIVE] = shade(0.92, @button_bg_color)
36}
37
38style "combobox_entry_button" {
39	fg[ACTIVE] = shade(0.5, @button_fg_color)
40	bg[ACTIVE] = shade(0.92, @button_bg_color)
41}
42
43style "set_text_color_to_fg_color_workaround" {
44	text[ACTIVE] = @button_fg_color
45}
46