2 # gtkrc for experimental wave viewer
6 # style <name> [= <name>]
11 # widget <widget_set> style <style_name>
12 # widget_class <widget_class_set> style <style_name>
17 fg[NORMAL] = {1.0, 1.0, 1.0}
20 # This sets the waveform button background.
21 style "wavebutton" { bg[NORMAL] = { 0.25, 0.25, 0.25 } }
22 style "wavebutton" { base[NORMAL] = { 0.25, 0.25, 0.25 } }
23 widget "*wavebutton" style "wavebutton"
26 # Waveforms and waveform-button labels will use this set of 6 colors.
27 # If there are not 6 of them here, the waveform-label buttons will get
28 # the default black, and the waveform itself will get drawn in black also,
29 # which won't be visible at all if the background is also black.
32 style "wavecolor0" { fg[NORMAL] = {0.4, 0.5, 1.0 } } # blue
33 style "wavecolor1" { fg[NORMAL] = {1.0, 0.0, 0.0} } # red
34 style "wavecolor2" { fg[NORMAL] = {0.0, 1.0, 0.0} } # green
35 style "wavecolor3" { fg[NORMAL] = {1.0, 1.0, 0.0} } # yellow
36 style "wavecolor4" { fg[NORMAL] = {0.0, 1.0, 1.0} } # cyan
37 style "wavecolor5" { fg[NORMAL] = {1.0, 0.0, 1.0} } # purple
40 widget "*wavecolor0" style "wavecolor0"
41 widget "*wavecolor1" style "wavecolor1"
42 widget "*wavecolor2" style "wavecolor2"
43 widget "*wavecolor3" style "wavecolor3"
44 widget "*wavecolor4" style "wavecolor4"
45 widget "*wavecolor5" style "wavecolor5"