1#
2# gtkrc for experimental wave viewer
3#
4
5#
6# style <name> [= <name>]
7# {
8#   <option>
9# }
10#
11# widget <widget_set> style <style_name>
12# widget_class <widget_class_set> style <style_name>
13#
14
15style "cursor1"
16{
17	fg[NORMAL] = {1.0, 1.0, 1.0}
18}
19
20# This sets the waveform button background.
21style "wavebutton" { bg[NORMAL] = { 0.25, 0.25, 0.25 } }
22style "wavebutton" { base[NORMAL] = { 0.25, 0.25, 0.25 } }
23widget "*wavebutton" style "wavebutton"
24
25#
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.
30#
31
32style "wavecolor0" { fg[NORMAL] = {0.4, 0.5, 1.0 } }		# blue
33style "wavecolor1" { fg[NORMAL] = {1.0, 0.0, 0.0} }	# red
34style "wavecolor2" { fg[NORMAL] = {0.0, 1.0, 0.0} }	# green
35style "wavecolor3" { fg[NORMAL] = {1.0, 1.0, 0.0} }	# yellow
36style "wavecolor4" { fg[NORMAL] = {0.0, 1.0, 1.0} }	# cyan
37style "wavecolor5" { fg[NORMAL] = {1.0, 0.0, 1.0} }	# purple
38
39
40widget "*wavecolor0" style "wavecolor0"
41widget "*wavecolor1" style "wavecolor1"
42widget "*wavecolor2" style "wavecolor2"
43widget "*wavecolor3" style "wavecolor3"
44widget "*wavecolor4" style "wavecolor4"
45widget "*wavecolor5" style "wavecolor5"
46