1style "default" {
2	font = "fixed"
3}
4
5style "button" {
6	bg[NORMAL] = { 0.85, 0.9, 0.9 }
7}
8
9style "slider" {
10	bg[NORMAL] = { 0.7, 0.7, 0.5 }
11	bg[ACTIVE] = { 0.8, 0.85, 0.75 }
12	engine "notif" { }
13}
14
15style "mute" {
16	bg[SELECTED] = { 0.6, 1.0, 1.0 }
17}
18
19style "record" {
20	bg[SELECTED] = { 1.0, 0.7, 0.7 }
21}
22
23class "GtkScale" style "slider"
24widget "*GtkButton" style "button"
25widget "*muteButton" style "mute"
26widget "*recButton" style "record"
27
28