summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour3_ui_dark.rc.in
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-01-06 01:07:28 +0000
committerCarl Hetherington <carl@carlh.net>2011-01-06 01:07:28 +0000
commit75fca54e6141fd81bfcfb2164319333b32bef519 (patch)
tree13bcaad571b6ab9cb799e5fd1b96e023b7bf25fd /gtk2_ardour/ardour3_ui_dark.rc.in
parent61bb7c5852df332a97d9752a507feb590bb3f12d (diff)
Make processor box frames configurable colour-wise.
git-svn-id: svn://localhost/ardour2/branches/3.0@8459 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour3_ui_dark.rc.in')
-rw-r--r--gtk2_ardour/ardour3_ui_dark.rc.in24
1 files changed, 19 insertions, 5 deletions
diff --git a/gtk2_ardour/ardour3_ui_dark.rc.in b/gtk2_ardour/ardour3_ui_dark.rc.in
index ae8e6cf2bf..4be6fdf855 100644
--- a/gtk2_ardour/ardour3_ui_dark.rc.in
+++ b/gtk2_ardour/ardour3_ui_dark.rc.in
@@ -1223,30 +1223,42 @@ style "processor_list"
GtkCheckButton::indicator-spacing = 0
}
-style "processor_frame"
+# Colour of the frame of the fader in the processor list
+style "processor_fader_frame"
{
- # Colour of the frame of a processor in the processor list
bg[NORMAL] = { 0.6, 0.6, 0.6 }
}
-# A pre-fader processor
+# A pre-fader processor's background
style "processor_prefader"
{
bg[NORMAL] = { 0.2, 0.0, 0.0 }
}
+# A pre-fader processor's frame
+style "processor_prefader_frame"
+{
+ bg[NORMAL] = { 0.0, 0.0, 0.99 }
+}
+
# The fader processor
style "processor_fader"
{
bg[NORMAL] = { 0.4, 0.4, 0.4 }
}
-# A post-fader processor
+# A post-fader processor's background
style "processor_postfader"
{
bg[NORMAL] = { 0.0, 0.2, 0.0 }
}
+# A post-fader processor's frame
+style "processor_postfader_frame"
+{
+ bg[NORMAL] = { 0.0, 0.99, 0.99 }
+}
+
# MixerPanZone:
#
# the NORMAL fg color is used for the pan puck
@@ -1881,10 +1893,12 @@ widget "*OddPortGroups" style:highest "odd_port_groups"
widget "*EvenPortGroups" style:highest "even_port_groups"
widget "*MidiListView*" style:highest "white_tree_view"
widget "*ProcessorList*" style:highest "processor_list"
-widget "*ProcessorFrame*" style:highest "processor_frame"
+widget "*ProcessorFaderFrame*" style:highest "processor_fader_frame"
widget "*ProcessorPreFader" style:highest "processor_prefader"
+widget "*ProcessorPreFaderFrame" style:highest "processor_prefader_frame"
widget "*ProcessorFader" style:highest "processor_fader"
widget "*ProcessorPostFader" style:highest "processor_postfader"
+widget "*ProcessorPostFaderFrame" style:highest "processor_postfader_frame"
widget "*PortMatrixLabel*" style:highest "small_text"
widget "*MidiTracerTextView" style:highest "midi_tracer_textview"
widget "*SoloIsolatedLED" style:highest "solo_isolate_led"