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 "menu" {
8	bg[NORMAL] = @dark_bg_color
9	fg[NORMAL] = shade(0.95, @dark_fg_color)
10	fg[PRELIGHT] = @selected_focused_fg_color
11	engine "murrine"
12	{
13		contrast = 0.7
14	}
15}
16
17style "menu_item" {
18	fg[NORMAL] = @dark_fg_color
19	fg[INSENSITIVE] = shade(0.5, @dark_fg_color)
20	text[NORMAL] = shade(0.95, @dark_fg_color)
21	text[PRELIGHT] = shade(0.95, @selected_focused_fg_color)
22}
23
24style "combo_menu_item" {
25	text[NORMAL]        = @dark_fg_color
26	text[PRELIGHT]      = @selected_focused_fg_color
27	text[SELECTED]      = @selected_focused_fg_color
28	text[ACTIVE]        = @dark_fg_color
29	text[INSENSITIVE]   = shade(0.5, @dark_fg_color)
30}
31
32style "separator_menu_item" {
33	bg[NORMAL] = shade(1.0, @dark_bg_color)
34	GtkWidget::separator-height = 5
35	engine "murrine" {
36		contrast =1.3
37	}
38}
39