Install everything to *ardour3* instead of *ardour2*.
authorDavid Robillard <d@drobilla.net>
Sun, 13 Jan 2008 21:34:04 +0000 (21:34 +0000)
committerDavid Robillard <d@drobilla.net>
Sun, 13 Jan 2008 21:34:04 +0000 (21:34 +0000)
Fix initial display of keys and scroomer on new MIDI tracks.
Remove console barf.

git-svn-id: svn://localhost/ardour2/trunk@2909 d708f5d6-7413-0410-9779-e7cbd77b26cf

25 files changed:
PACKAGER_README
SConstruct
gtk2_ardour/SConscript
gtk2_ardour/ardev_common.sh.in
gtk2_ardour/ardour.sh.in
gtk2_ardour/ardour2_ui_dark.rc.in [deleted file]
gtk2_ardour/ardour2_ui_default.conf [deleted file]
gtk2_ardour/ardour2_ui_light.rc.in [deleted file]
gtk2_ardour/ardour3_ui_dark.rc.in [new file with mode: 0644]
gtk2_ardour/ardour3_ui_default.conf [new file with mode: 0644]
gtk2_ardour/ardour3_ui_light.rc.in [new file with mode: 0644]
gtk2_ardour/midi_streamview.cc
gtk2_ardour/midi_time_axis.cc
gtk2_ardour/opts.cc
gtk2_ardour/piano_roll_header.cc
gtk2_ardour/theme_manager.cc
gtk2_ardour/ui_config.cc
gtk2_ardour/ui_config_vars.h
libs/ardour/SConscript
libs/ardour/directory_names.cc
libs/ardour/diskstream.cc
libs/ardour/filesystem_paths.cc
libs/gtkmm2ext/scroomer.cc
tools/osx_packaging/ardour2_mac_ui.rc [deleted file]
tools/osx_packaging/ardour3_mac_ui.rc [new file with mode: 0644]

index 303df707f0eb141831a69fc1d7c364169053adaf..dd5be31c6df9b667ac3d51abca1fddc8a4e8fe30 100644 (file)
@@ -12,4 +12,4 @@ file) will be removed.
 (2) STANDARD TEMPLATES
 
 The templates in ./templates are intended for installation in
-$prefix/share/ardour2/templates.
+$prefix/share/ardour3/templates.
index 651a6a3eab3607205d5e576fab578956d1026f8a..cc21831df27df640ec711b7763087f74b565412f 100644 (file)
@@ -1236,12 +1236,12 @@ if os.path.exists('.svn'):
 
 the_revision = env.Command ('frobnicatory_decoy', [], create_stored_revision)
 remove_ardour = env.Command ('frobnicatory_decoy2', [],
-                             [ Delete ('$PREFIX/etc/ardour2'),
-                               Delete ('$PREFIX/lib/ardour2'),
-                               Delete ('$PREFIX/bin/ardour2')])
+                             [ Delete ('$PREFIX/etc/ardour3'),
+                               Delete ('$PREFIX/lib/ardour3'),
+                               Delete ('$PREFIX/bin/ardour3')])
 
 env.Alias('revision', the_revision)
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour_system.rc'))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), 'ardour_system.rc'))
 env.Alias('uninstall', remove_ardour)
 
 Default (sysrcbuild)
index f03286243bae0011197bc02213f76491de6e2f12..24fd461c3752afde91c76c01d9da753144070b5f 100644 (file)
@@ -401,8 +401,8 @@ else:
        my_font_dict['%FONT_ITALIC_HUGER%'] = 'sans italic 34'
        my_font_dict['%FONT_ITALIC_MASSIVE%'] = 'sans italic 60'
 
-ardour_dark_theme = env.SubstInFile ('ardour2_ui_dark.rc', 'ardour2_ui_dark.rc.in', SUBST_DICT = my_font_dict)
-ardour_light_theme = env.SubstInFile ('ardour2_ui_light.rc', 'ardour2_ui_light.rc.in', SUBST_DICT = my_font_dict)
+ardour_dark_theme = env.SubstInFile ('ardour3_ui_dark.rc', 'ardour3_ui_dark.rc.in', SUBST_DICT = my_font_dict)
+ardour_light_theme = env.SubstInFile ('ardour3_ui_light.rc', 'ardour3_ui_light.rc.in', SUBST_DICT = my_font_dict)
 
 my_subst_dict = { }
 
@@ -456,7 +456,7 @@ Default(ardour_light_theme)
 if env['VST']:
        Default(ardourlib)
        # the library - into the library dir
-       env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour2'), ardourlib))
+       env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour3'), ardourlib))
 else:
 
        if env['VERSIONED']:
@@ -467,25 +467,25 @@ else:
         #install
 
        # the executable - into the library dir
-       env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour2'), ardour))
+       env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour3'), ardour))
        # the script - into the bin dir
-       env.Alias('install', env.InstallAs(os.path.join(install_prefix, 'bin')+'/ardour2', ardoursh))
+       env.Alias('install', env.InstallAs(os.path.join(install_prefix, 'bin')+'/ardour3', ardoursh))
 
 if env['NLS']:
        i18n (gtkardour, gtkardour_files+skipped_files+fft_analysis_files, env)
     
 # configuration files
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), ardour_dark_theme))
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), ardour_light_theme))
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.menus'))
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour-sae.menus'))
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour.bindings'))
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour-sae-ansi.bindings'))
-env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour2'), 'ardour-sae-de.bindings'))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), ardour_dark_theme))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), ardour_light_theme))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), 'ardour.menus'))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), 'ardour-sae.menus'))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), 'ardour.bindings'))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), 'ardour-sae-ansi.bindings'))
+env.Alias('install', env.Install(os.path.join(config_prefix, 'ardour3'), 'ardour-sae-de.bindings'))
 # data files
-env.Alias('install', env.Install(os.path.join(install_prefix, 'share', 'ardour2'), 'splash.png'))
-env.Alias('install', env.Install(os.path.join(install_prefix, 'share', 'ardour2', 'pixmaps'), pixmap_files))
-env.Alias('install', env.Install(os.path.join(install_prefix, 'share', 'ardour2', 'icons'), icon_files))
+env.Alias('install', env.Install(os.path.join(install_prefix, 'share', 'ardour3'), 'splash.png'))
+env.Alias('install', env.Install(os.path.join(install_prefix, 'share', 'ardour3', 'pixmaps'), pixmap_files))
+env.Alias('install', env.Install(os.path.join(install_prefix, 'share', 'ardour3', 'icons'), icon_files))
 
 env.Alias ('version', gtkardour.VersionBuild(['version.cc','version.h'], []))
                
@@ -496,12 +496,12 @@ env.Alias ('tarball', env.Distribute (env['DISTTREE'],
                                        'ardour.sh.in',
                                        'ardev_common.sh.in',
                                        'ardev', 'ardbg',
-                                        'ardour2_ui_dark.rc.in', 'ardour2_ui_light.rc.in', 'splash.png',
+                                        'ardour3_ui_dark.rc.in', 'ardour3_ui_light.rc.in', 'splash.png',
                                         'ardour.menus', 'ardour-sae.menus', 
                                        'ardour.bindings.in', 
                                        'ardour-sae-ansi.bindings.in', 
                                        'ardour-sae-de.bindings.in', 
-                                       'ardour2_ui_default.conf',
+                                       'ardour3_ui_default.conf',
                                        'editor_xpms'
                                         ] +
                                       gtkardour_files +
index a34bae1256f87de7558034e50d86a24e8c61c712..d93f108143cd2c1265d01073c28f5ae6667cba08 100644 (file)
@@ -11,6 +11,6 @@ export LD_LIBRARY_PATH=libs/vamp-sdk:libs/surfaces/control_protocol:libs/ardour:
 # DYLD_LIBRARY_PATH is for darwin.
 export DYLD_FALLBACK_LIBRARY_PATH=$LD_LIBRARY_PATH
 # For the internal clearlooks engine
-export GTK_PATH=$PWD/libs/clearlooks:~/.ardour2
+export GTK_PATH=$PWD/libs/clearlooks:~/.ardour3
 
 EXECUTABLE=gtk2_ardour/ardour-%VERSION%
index 2f1092c3fe13e213794d02edb3842a5c099f9ed8..1cd8ada3efa2df0a2d89247440e9f7abfe497e76 100644 (file)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
-export GTK_PATH=%INSTALL_PREFIX%/%LIBDIR%/ardour2:$GTK_PATH
+export GTK_PATH=%INSTALL_PREFIX%/%LIBDIR%/ardour3:$GTK_PATH
 
-export LD_LIBRARY_PATH=%INSTALL_PREFIX%/%LIBDIR%/ardour2:$LD_LIBRARY_PATH 
+export LD_LIBRARY_PATH=%INSTALL_PREFIX%/%LIBDIR%/ardour3:$LD_LIBRARY_PATH 
 # DYLD_LIBRARY_PATH is for Darwin
 export DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH
 
@@ -15,6 +15,6 @@ fi
 
 ulimit -c unlimited
 
-exec %INSTALL_PREFIX%/%LIBDIR%/ardour2/ardour-%VERSION% "$@"
+exec %INSTALL_PREFIX%/%LIBDIR%/ardour3/ardour-%VERSION% "$@"
 
 
diff --git a/gtk2_ardour/ardour2_ui_dark.rc.in b/gtk2_ardour/ardour2_ui_dark.rc.in
deleted file mode 100644 (file)
index b2b5edd..0000000
+++ /dev/null
@@ -1,1557 +0,0 @@
-#
-# This is the GTK style file for Ardour
-#
-
-style "very_small_text"
-{
-       font_name = "%FONT_SMALLER%"
-}
-
-style "small_text"
-{
-       font_name = "%FONT_SMALL%"
-}
-
-style "small_bold_text"
-{
-       font_name = "%FONT_BOLD_SMALL%"
-}
-
-style "medium_bold_text"
-{
-       font_name = "%FONT_BOLD_NORMAL%"
-}
-
-style "medium_text"
-{
-       font_name = "%FONT_NORMAL%"
-}
-
-style "red_medium_text" = "medium_text"
-{      
-       fg[NORMAL] = { 1.0, 0, 0 }
-       fg[ACTIVE] = { 1.0, 0, 0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-}
-
-style "large_text"
-{
-       font_name = "%FONT_LARGE%"
-}
-
-style "larger_bold_text"
-{
-       font_name = "%FONT_BOLD_BIGGER%"
-}
-
-style "plugin_name_text"
-{
-       font_name = "%FONT_BOLD_LARGER%"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-}
-
-style "plugin_maker_text"
-{
-       font_name = "%FONT_BOLD_BIGGER%"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-}
-
-style "automation_track_name"
-{
-       font_name = "%FONT_ITALIC_NORMAL%"
-}
-
-style "first_action_message" 
-{
-       font_name = "%FONT_HUGER%"
-}
-
-style "verbose_canvas_cursor"
-{
-       font_name = "%FONT_BOLD_LARGER%"
-}
-
-style "marker_text" 
-{
-       font_name = "%FONT_SMALL%"
-}
-
-style "time_axis_view_item_name"
-{
-       font_name = "%FONT_SMALLER%"
-}
-
-style "default_base" = "medium_text"
-{
-  
-  GtkWidget::cursor_color =  {1.0, 1.0, 1.0 }
-  GtkButton::default_border = { 0, 0, 0, 0 }
-  GtkButton::default_outside_border = { 0, 0, 0, 0 }
-  GtkButton::button_relief = GTK_RELIEF_NONE
-  GtkTreeView::vertical-padding = 0
-  GtkTreeView::horizontal-padding = 0
-  GtkTreeView::even-row-color = { 0, 0, 0 }
-  GtkTreeView::odd-row-color = {  0.10, 0.10, 0.15 }
-  
-  fg[NORMAL] = { 0.80, 0.80, 0.80 }    
-  fg[ACTIVE] = { 0.80, 0.80, 0.80 }    
-  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
-  fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }       
-  fg[SELECTED] = { 0.80, 0.80, 0.80 }  
-  
-  bg[NORMAL] = { 0.35, 0.35, 0.40 }
-  bg[ACTIVE] = { 0.35, 0.35, 0.40 }
-  bg[PRELIGHT] = "#565690"
-  bg[INSENSITIVE] = { 0.10, 0.10, 0.10 }
-  bg[SELECTED] = { 0, 0.40, 0.60 }
-  
-  text[NORMAL] = { 0.80, 0.80, 0.80 }  
-  text[ACTIVE] = { 0.80, 0.80, 0.80 }  
-  text[PRELIGHT] = { 0.80, 0.80, 0.80 }        
-  text[INSENSITIVE] = { 0.80, 0.80, 0.80}      
-  text[SELECTED] = { 1.0, 1.0, 1.0 }
-  
-  base[ACTIVE]     = "#272a2f"
-  base[NORMAL]      =  "#1a1e20"
-  base[PRELIGHT]     = { 0.20, 0.20, 0.20 }
-  base[INSENSITIVE]  = "#4c5159"
-  base[SELECTED]     = { 0.25, 0.25, 0.25 }
-
-  engine "clearlooks" 
-  {
-    menubarstyle      = 0       # 0 = flat, 1 = sunken, 2 = flat gradient
-  }
-}
-
-style "base_frame"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-}
-
-style "transport_base" = "medium_bold_text"
-{
-  bg[NORMAL] = { 0.10, 0.10, 0.10 }
-  bg[ACTIVE] = { 0, 0, 0 }
-  bg[PRELIGHT] = { 0, 0, 0 }
-  bg[INSENSITIVE] = { 0, 0, 0 }
-  bg[SELECTED] = { 0, 0, 0 }
-}
-/*
-style "black_mackie_menu_bar"
-{
-  font_name = "%FONT_BOLD_NORMAL%"
-  fg[NORMAL] = { 1.0, 1.0, 1.0 }
-  bg[NORMAL] = { 0, 0, 0 }
-}
-*/
-style "default_buttons_menus" 
-{
-  font_name = "%FONT_NORMAL%"
-  fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-  
-  bg[NORMAL] = { 0.30, 0.30, 0.35 }
-  bg[ACTIVE] = "#565690"
-  bg[PRELIGHT] = { 0.15, 0.15, 0.20 }
-  bg[INSENSITIVE] = { 0.15, 0.15, 0.20 }
-  bg[SELECTED] = { 0.15, 0.15, 0.20 }  
-}
-
-style "very_small_button" = "default_buttons_menus"
-{
-       font_name = "%FONT_SMALLER%"
-       ythickness = 0
-       xthickness = 0
-}
-
-style "small_button" = "default_buttons_menus"
-{
-}
-
-style "very_small_red_active_and_selected_button" = "very_small_button"
-{
-       bg[ACTIVE] = { 1.0, 0, 0}
-       bg[SELECTED] = { 1.0, 0, 0}
-}
-
-style "small_red_active_and_selected_button" = "small_button"
-{
-       fg[ACTIVE] = { 0, 0, 0 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-       bg[SELECTED] = { 1.0, 0, 0}
-}
-
-style "gain_fader"
-{
-       bg[NORMAL] =   { 0.269, 0.269, 0.300}
-       bg[ACTIVE] =   { 0.152, 0.152, 0.168 }
-}
-
-
-style "track_rec_enable_button" = "small_button"
-{
-}
-
-style "track_rec_enable_button_active" = "small_button"
-{
-       fg[SELECTED] = { 0.0, 0.0, 0.0 }
-       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
-       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
-       fg[NORMAL] = { 0.0, 0.0, 0.0 }
-
-       bg[NORMAL] =   { 1.0, 0.0, 0.0 }
-       bg[ACTIVE] =   { 1.0, 0.0, 0.0 }
-       bg[SELECTED] =   { 1.0, 0.0, 0.0 }
-       bg[PRELIGHT] =   { 1.0, 0.0, 0.0 }
-}
-
-style "track_rec_enable_button_alternate" = "small_button"
-{
-       fg[SELECTED] = { 0.0, 0.0, 0.0 }
-       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
-       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
-       fg[NORMAL] = { 0.0, 0.0, 0.0 }
-
-       bg[NORMAL] =   { 0.91, 0.68, 0.68}
-       bg[ACTIVE] =   { 0.91, 0.68, 0.68}
-       bg[SELECTED] =   { 0.91, 0.68, 0.68}
-       bg[PRELIGHT] =   { 0.91, 0.68, 0.68}
-}
-
-style "mixer_track_rec_enable_button" = "track_rec_enable_button"
-{
-       font_name = "%FONT_SMALLER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_track_rec_enable_button_alternate" = "track_rec_enable_button_alternate"
-{
-       font_name = "%FONT_SMALLER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_track_rec_enable_button_active" = "track_rec_enable_button_active"
-{
-       font_name = "%FONT_SMALLER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "solo_button" = "small_button"
-{
-}
-
-style "solo_button_alternate" = "small_button"
-{
-       bg[NORMAL] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[ACTIVE] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[SELECTED] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[PRELIGHT] = { 0.19, 0.97, 0.69 } # solo-safe
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-
-style "solo_button_active" = "small_button"
-{
-       bg[NORMAL] = { 0.66, 0.97, 0.19 }   # solo
-       bg[ACTIVE] = { 0.66, 0.97, 0.19 }   # solo
-       bg[SELECTED] = { 0.66, 0.97, 0.19 }   # solo
-       bg[PRELIGHT] = { 0.66, 0.97, 0.19 }   # solo
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mixer_solo_button" = "solo_button"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_solo_button_alternate" = "solo_button_alternate"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-style "mixer_solo_button_active" = "solo_button_active"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-
-style "mute_button" = "small_button"
-{
-}
-
-style "mute_button_alternate" = "small_button"
-{
-       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
-       bg[NORMAL] = { 1.0, 0.98, 0.53 }
-       bg[SELECTED] = { 1.0, 0.98, 0.53 }
-       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
-
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mute_button_active" = "small_button"
-{
-       bg[NORMAL] = { 0.90, 0.89, 0.73 }
-       bg[ACTIVE] = { 0.90, 0.89, 0.73 }
-       bg[PRELIGHT] = { 0.90, 0.89, 0.73 }
-       bg[SELECTED] = { 0.90, 0.89, 0.73 }
-
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mixer_mute_button" = "mute_button"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button_alternate" = "mute_button_alternate"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button_active" = "mute_button_active"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "multiline_combo" = "small_button"
-{
-       font_name = "%FONT_NORMAL%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button" = "mute_button"
-{
-       font_name = "%FONT_SMALLER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "track_loop_button" = "small_button"
-{
-       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
-       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
-
-}
-
-style "mixer_red_active_button" = "very_small_button"
-{
-       fg[ACTIVE] = { 0, 1.0, 1.0 }
-       bg[ACTIVE] = { 0.7, 0, 0 }
-
-       base[INSENSITIVE] = { 0.16, 0.16, 0.21 }
-       bg[INSENSITIVE] = { 0.16, 0.16, 0.21 }
-}
-
-style "time_button" = "default_buttons_menus"
-{
-       font_name = "%FONT_NORMAL%"
-}
-
-style "transport_button"
-{
-}
-
-style "transport_button_active"
-{
-       bg[NORMAL] = { 0.50, 1.0, 0.50 }
-       bg[ACTIVE] = { 0.50, 1.0, 0.50 }
-       bg[SELECTED] = { 0.50, 1.0, 0.50 }
-       bg[PRELIGHT] = { 0.50, 1.0, 0.50 }
-
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "transport_rec_button"
-{
-}
-
-style "transport_rec_button_active"
-{
-       bg[ACTIVE] = { 1.0, 0, 0 }
-       bg[NORMAL] = { 1.0, 0, 0 }
-       bg[SELECTED] = { 1.0, 0, 0 }
-       bg[PRELIGHT] = { 1.0, 0, 0 }
-}
-
-style "transport_rec_button_alternate"
-{
-       bg[PRELIGHT] = { 0.91, 0.68, 0.68 }
-       bg[NORMAL] = { 0.91, 0.68, 0.68 }
-       bg[SELECTED] = { 0.91, 0.68, 0.68 }
-       bg[ACTIVE] = { 0.91, 0.68, 0.68 }
-}
-
-style "shuttle_control" = "very_small_text"
-{
-       fg[NORMAL] = { 0.85, 0.92, 0.98 }
-       fg[ACTIVE] = { 0.85, 0.92, 0.98 }
-       fg[PRELIGHT] = { 0.85, 0.92, 0.98 }
-       fg[SELECTED] = { 0.85, 0.92, 0.98 }
-       fg[INSENSITIVE] = { 0.85, 0.92, 0.98 }
-
-       bg[NORMAL] = { 0.26, 0.26, 0.31 }
-       bg[PRELIGHT] = { 0.26, 0.26, 0.31 }
-       bg[INSENSITIVE] = { 0.26, 0.26, 0.31 }
-       bg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       bg[SELECTED] = { 1.0, 0.04, 0.04 }
-}
-
-style "ardour_adjusters" = "default_buttons_menus"
-{
-       bg[NORMAL] = { 0.60, 0.60, 0.60 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.06, 0.06, 0.06 }
-}
-
-style "editor_hscrollbar" = "ardour_adjusters"
-{
-       #
-       # special case: we want this scrollbar to be as tall as the
-       # zoom focus selector combobox. scrollbars don't expand to
-        # fill the space available to them, so we have to explicitly
-       # make it bigger.
-       # 
-       GtkRange::slider_width = 27
-       GtkScrollbar::slider_width = 27
-}
-
-style "ardour_progressbars" = "default_buttons_menus"
-{ 
-  bg[NORMAL] = { 0, 0, 0 }
-  bg[PRELIGHT] = { 0.00, 0.36, 0.40 }
-}
-
-style "preferences"  = "default_base"
-{
-       font_name = "%FONT_NORMAL%"
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "option_entry"  = "default_base"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       
-       base[INSENSITIVE] = { 0.07, 0.07, 0.12 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       bg[ACTIVE] = { 0.35, 0.35, 0.40 }
-}
-
-style "red_when_active" = "medium_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.26, 0.26, 0.31 }
-
-       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-}
-
-style "xrun_warn"  
-{
-       font_name = "%FONT_BOLD_LARGE%"
-
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       text[NORMAL] = { 1.0, 1.0, 1.0 }
-       text[ACTIVE] = { 1.0, 1.0, 1.0 }
-       base[NORMAL] = { 0.09, 0.48, 0.46 }
-       base[ACTIVE] = { 0.09, 0.48, 0.46 }
-       bg[NORMAL] = { 1.0, 0.48, 0.46 }
-       bg[ACTIVE] = { 0.09, 1.0, 0.46 }
-}
-/*
-style "menu_bar_base" = "default_base"
-{
-       bg[NORMAL] = { 0.2, 0.2, 0.3 }
-       bg[ACTIVE] = { 0, 0, 0 }
-       bg[PRELIGHT] = { 0, 0, 0 }
-       bg[INSENSITIVE] = { 0, 0, 0 }
-       bg[SELECTED] = { 0, 0, 0 }
-}
-*/
-style "fatal_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 1.0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "error_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "info_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "warning_message" = "medium_text"
-{
-   fg[ACTIVE] = { 0.30,0.30, 1.0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0, 0, 0 }
-   bg[NORMAL] = { 0, 0, 0 }
-   base[ACTIVE] = { 0, 0, 0 }
-   base[NORMAL] = { 0, 0, 0 }
-}
-
-style "medium_entry" = "medium_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-}
-
-style "medium_entry_noselection_fg" = "medium_entry"
-{
-       fg[SELECTED] = { 0.50, 1.0, 0.50 }
-}
-
-style "medium_entry_noselection_bg" = "medium_entry"
-{
-       bg[SELECTED] = { 1.0, 1.0, 1.0 }
-}
-
-style "medium_bold_entry"  = "medium_bold_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "small_entry" = "small_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0, 1.0, 0 }
-       fg[SELECTED] = { 0, 1.0, 0 }
-       text[NORMAL] = { 0.70, 0.70, 0.70 }
-       text[ACTIVE] = { 0, 1.0, 0 }
-       text[SELECTED] = { 0, 1.0, 0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[SELECTED] = { 0.0, 0.0, 0.0 }
-       bg[SELECTED] = { 0.0, 0.0, 0.0 }
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "red_active_small_entry" = "small_entry"
-{
-       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-}
-
-style "small_bold_entry" = "small_bold_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "small_red_on_black_entry"  = "small_bold_text"
-{
-       fg[NORMAL] = { 1.0, 0, 0 }
-       fg[ACTIVE] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
-}
-
-style "non_recording_big_clock_display" = "medium_entry"
-{
-       font_name = "%FONT_MASSIVE%"
-
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       fg[PRELIGHT] = { 1.0, 0, 0.0 }
-       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
-       
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.7, 0.0, 0.0 }  
-}
-
-style "recording_big_clock_display" = "non_recording_big_clock_display"
-{
-       fg[NORMAL] = { 1.0, 0, 0 }
-}
-
-style "transport_clock_display"
-{
-       font_name = "%FONT_BOLD_BIGGER%"
-       
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       fg[PRELIGHT] = { 1.0, 0, 0.0 }
-       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
-       
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
-}
-
-style "transport_clock_display_delta" = "transport_clock_display"
-{
-       fg[NORMAL] = { 0.30, 0.30, 1.0 }
-}
-
-style "tempo_meter_clock_display"
-{
-       font_name = "%FONT_SMALLER%"
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0.0, 0.48, 1.0 }
-       base[ACTIVE] = { 0.09, 0.98, 0.46 }
-       bg[NORMAL] = { 0.0, 0.48, 1.0 }
-       bg[ACTIVE] = { 0.09, 0.98, 0.46 }
-}
-
-style "default_clock_display" = "medium text"
-{
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       bg[NORMAL] = { 0, 0, 0 }
-       bg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "editor_time_ruler" = "small_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.09, 0.09, 0.09 }
-}
-
-style "audio_bus_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
-  bg[NORMAL] = { 0.20, 0.20, 0.26 }    
-}
-
-style "audio_track_base" = "default_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  bg[NORMAL] = { 0.18, 0.19, 0.22 }
-  bg[ACTIVE] = { 0.20, 0.20, 0.20 }    
-  bg[PRELIGHT] = { 0.20, 0.20, 0.20 }
-  bg[INSENSITIVE] = { 0.20, 0.20, 0.20 }
-  bg[SELECTED] = { 0.20, 0.20, 0.20 }
-}
-
-style "midi_bus_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
-  #bg[NORMAL] = {0, 0.36, 0.40 }
-  bg[NORMAL] = "#444466"       
-}
-
-style "midi_track_base" = "default_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  bg[NORMAL] = { 0.48, 0.30, 0.32 }
-  bg[ACTIVE] = { 0.20, 0.20, 0.20 }    
-  bg[PRELIGHT] = { 0.20, 0.20, 0.20 }
-  bg[INSENSITIVE] = { 0.20, 0.20, 0.20 }
-  bg[SELECTED] = { 0.20, 0.20, 0.20 }
-}
-
-style "track_controls_inactive" 
-{
-       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
-       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
-       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
-       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
-       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
-
-       #font_name = "sans 18"
-       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
-}
-
-style "audio_track_metrics" = "audio_track_base"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "audio_bus_metrics" = "audio_bus_base"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "audio_track_metrics_inactive" = "track_controls_inactive"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "audio_bus_metrics_inactive" = "track_controls_inactive"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "track_name_display"
-{
-       font_name = "%FONT_NORMAL%"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
-
-       base[NORMAL] = { 0.06, 0.06, 0.06 }
-       base[ACTIVE] = { 0.26, 0.26, 0.26 }
-       bg[NORMAL] = { 0.26, 0.26, 0.26 }
-       bg[ACTIVE] = { 0.26, 0.26, 0.26 }
-}
-
-style "active_track_name_display"
-{
-       font_name = "%FONT_NORMAL%"
-       text[NORMAL] = { 0.26, 0.26, 0.26 }
-       base[NORMAL] = { 0.89, 0.89, 0.89 }
-}
-
-style "track_separator"
-{
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-}
-
-#
-# Track edit groups. These styles define
-# the colors that the "edit" button will
-# use as a track is moved from
-# track edit group to track edit group.
-# There are 8 edit groups. Edit group 0
-# is used for tracks that are not editable, 
-# so we leave its style to the default.
-#
-
-style "edit_group_0"
-
-{
-       bg[ACTIVE] = { 1.0, 0.65, 0.13 }
-       bg[NORMAL] = { 0.31, 0.31, 0.31 }
-       fg[NORMAL] = { 0.82, 0.91, 0.99 }
-       fg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "edit_group_1" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "edit_group_2" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "edit_group_3" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "treeview_parent_node"
-{
-       # specifies *just* the color used for whole file rows when not selected
-       fg[NORMAL] = { 0.0, 0.6, 0.85 }
-}
-
-style "treeview_display" = "small_bold_text"
-{
-       # expander arrow border and DnD "icon" text
-       fg[NORMAL] = { 0.8, 0.8, 0.8 } 
-
-       # background with no rows or no selection, plus
-       # expander arrow core and DnD "icon" background
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-
-       # selected row bg when window does not have focus (including during DnD)
-       base[ACTIVE] = { 0.0, 0.60, 0.60 }    
-
-       # selected row bg when window has focus
-       base[SELECTED] = { 0, 0.75, 0.75 }
-
-       # row text when in normal state and not a parent
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-
-       # selected row text with window focus
-       text[SELECTED] = { 0, 1.0, 1.0 }  
-
-       # selected row text without window focus (including during DnD)
-       text[ACTIVE] = { 0, 1.0, 1.0 }  
-}
-
-style "main_canvas_area"
-{
-       bg[NORMAL] = { 0.30, 0.30, 0.34 }
-       bg[ACTIVE] = { 0.30, 0.30, 0.34 }
-       bg[INSENSITIVE] = { 0.30, 0.30, 0.34 }
-       bg[SELECTED] = { 0.30, 0.30, 0.34 }
-       bg[PRELIGHT] = { 0.30, 0.30, 0.34 }
-}
-
-style "track_controls_inactive"
-{
-       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
-       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
-       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
-       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
-       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
-
-       font_name = "%FONT_LARGE%"
-       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
-}
-
-style "edit_controls_base_selected"
-{
-       bg[NORMAL] = { 0.32, 0.32, 0.54 }
-       bg[ACTIVE] = { 0.32, 0.32, 0.54 }
-       bg[INSENSITIVE] = { 0.32, 0.32, 0.54 }
-       bg[SELECTED] = { 0.32, 0.32, 0.54 }
-       bg[PRELIGHT] = { 0.32, 0.32, 0.54 }
-}
-
-style "automation_track_controls_base"
-{
-       bg[NORMAL] = { 0.22, 0.22, 0.29 }
-       bg[ACTIVE] = { 0.22, 0.22, 0.29 }
-       bg[INSENSITIVE] = { 0.22, 0.22, 0.29 }
-       bg[SELECTED] = { 0.22, 0.22, 0.29 }
-       bg[PRELIGHT] = { 0.22, 0.22, 0.29 }
-}
-
-# Plugin Editors
-style "plugin_slider" 
-{
-       font_name ="%FONT_BOLD_BIG%"
-
-       # the slider itself. the inactive part is INSENSITIVE,
-       # the active part is something else.
-
-       fg[NORMAL] = { 0.37, 0.43, 0.52 }
-       fg[ACTIVE] = { 0.37, 0.43, 0.52 }
-       fg[INSENSITIVE] = {0.35, 0.35, 0.40 } # matches default_base
-       fg[SELECTED] = { 0.37, 0.43, 0.52 }
-       fg[PRELIGHT] = { 0.37, 0.43, 0.52 }
-
-       # draws the outer rectangle around the slider
-
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[INSENSITIVE] = {0.80, 0.80, 0.80 }
-       bg[SELECTED] = { 0.80, 0.80, 0.80 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-
-       # the numeric display
-
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.80, 0.80, 0.80 }
-       text[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       text[SELECTED] = { 0.80, 0.80, 0.80 }
-       text[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "track_list_display" = "small_bold_text"
-{
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.3, 0.3, 0.3 }
-       text[INSENSITIVE] = { 0, 0, 0 }
-       text[SELECTED] = { 0.8, 0.8, 0.8 }
-
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[INSENSITIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "inspector_track_list_display" = "track_list_display"
-{
-       text[ACTIVE] = { 0.8, 0.8, 0.8 }
-
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0.2, 0.2, 0.2 }
-       base[INSENSITIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0.3, 0.3, 0.4 }
-}
-
-style "redirect_list_display"
-{
-       GtkTreeView::horizontal-separator = 0
-       GtkTreeView::vertical-separator = 0
-
-       font_name = "%FONT_SMALL%"
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.70, 0.70, 0.70 }
-       text[INSENSITIVE] = { 0, 0, 0 }
-       text[SELECTED] = { 0.9, 0.3, 0.3 }
-
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[INSENSITIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-
-       # these two are explicitly used by the cell renderer for the
-        # text
-
-       fg[NORMAL] = { 0.5, 0.5, 0.5 }  # used for inactive
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }  # used for active
-}
-
-style "inspector_redirect_list_display" = "redirect_list_display"
-{
-       base[SELECTED] = { 0.3, 0.3, 0.3 }
-}
-
-# MixerPanZone:
-#
-# the NORMAL fg color is used for the pan puck
-# the ACTIVE fg color is used for the speaker boxes
-
-style "pan_zone" = "default_base"
-{
-       fg[NORMAL] = { 0.34, 0.95, 0.92 }
-       fg[ACTIVE] = { 0.95, 0.48, 0.11 }
-}
-
-style "paler_red_when_active" = "medium_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.31, 0.31, 0.31 }
-       bg[PRELIGHT] = { 0.31, 0.31, 0.31 }
-
-       fg[ACTIVE] = { 0.36, 0.46, 0.28 }
-       bg[ACTIVE] = { 1.00, 0.59, 0.59}
-}
-
-style "peak_display_peaked_entry" = "small_text"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-
-       bg[NORMAL] = {0.9, 0.0, 0.0 }   
-       bg[ACTIVE] = { 0.9, 0.0, 0.0 }  
-       bg[PRELIGHT] = { 0.9, 0.0, 0.0 }        
-       bg[INSENSITIVE] = { 0.9, 0.0, 0.0 }     
-       bg[SELECTED] = { 0.9, 0.0, 0.0 }        
-       base[NORMAL] = { 0.9, 0.0, 0.0 }        
-       base[ACTIVE] = { 0.9, 0.0, 0.0 }        
-       base[PRELIGHT] = { 0.9, 0.0, 0.0 }      
-       base[INSENSITIVE] = { 0.9, 0.0, 0.0 }   
-       base[SELECTED] = { 0.9, 0.0, 0.0 }      
-}
-
-style "selected_strip_frame"
-{
-       fg[NORMAL] = { 0.74, 0.42, 0.47 }
-       bg[NORMAL] = { 0.79, 0.28, 0.18 }
-}
-
-style "flashing_alert" = "very_small_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.26, 0.26, 0.31 }
-
-       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-}
-
-style "selected_io_selector_port_list" = "medium_bold_text"
-{
-
-       GtkTreeView::even-row-color = { 0, 0, 0 }
-       GtkTreeView::odd-row-color = { 0, 0, 0 }
-
-# fg is used to color the fg (text) of the column header button
-
-       fg[NORMAL] = { 0.85, 0.85, 0.85 }
-       fg[SELECTED] = { 0.85, 0.85, 0.85 }
-       fg[ACTIVE] = { 0.85, 0.85, 0.85 }
-       fg[PRELIGHT] = { 0.85, 0.85, 0.85 }
-       fg[INSENSITIVE] = { 0.85, 0.85, 0.85 }
-
-# bg is used used to color the background of the column header button
-
-       bg[NORMAL] = { 0.30, 0.30, 0.35 }
-       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
-       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
-       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
-       bg[SELECTED] = { 0.30, 0.30, 0.35 }
-
-# text is used to color the treeview row text
-
-       text[NORMAL] = { 0.85, 0.85, 0.85 }
-       text[SELECTED] = { 0.85, 0.85, 0.85 }
-
-# base is used to color a treeview with no rows
-
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-       base[ACTIVE] = { 0.20, 0.20, 0.25 }
-       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
-       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
-       base[SELECTED] = { 0.20, 0.20, 0.25 }
-
-}
-
-style "io_selector_port_list" = "medium_text"
-{
-       GtkTreeView::even-row-color = { 0.20, 0.20, 0.25 }
-       GtkTreeView::odd-row-color = { 0.20, 0.20, 0.25 }
-# fg is used to color the fg (text) of the column header button
-
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[SELECTED] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       fg[PRELIGHT] = { 0.70, 0.70, 0.70 }
-       fg[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-
-# bg is used used to color the background of the column header button
-
-       bg[NORMAL] = { 0.30, 0.30, 0.35 }
-       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
-       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
-       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
-       bg[SELECTED] = { 0.30, 0.30, 0.35 }
-
-# text is used to color the treeview row text
-
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[SELECTED] = { 0.80, 0.80, 0.80 }
-
-# base is used to color a treeview with no rows
-
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-       base[ACTIVE] = { 0.20, 0.20, 0.25 }
-       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
-       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
-       base[SELECTED] = { 0.20, 0.20, 0.25 }
-}
-
-style "io_selector_notebook" = "default_base"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-        font_name ="%FONT_BOLD_NORMAL%"
-}
-
-style "tearoff_arrow" = "medium_bold_entry"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "location_row_button" = "default_buttons_menus"
-{
-       font_name = "%FONT_BIG%"
-}
-
-style "location_rows_clock" = "default_clock_display"
-{
-       font_name = "%FONT_BIG%"
-}
-
-style "pan_slider" 
-{
-       font_name = "%FONT_NORMAL%"
-
-       fg[NORMAL] = { 0.22, 0.73, 0.22 }
-       fg[ACTIVE] = { 0.22, 0.73, 0.22 }
-       fg[INSENSITIVE] = {0.22, 0.53, 0.22 } 
-       fg[SELECTED] = { 0.67, 0.23, 0.22 }
-       fg[PRELIGHT] = { 0.67, 0.23, 0.22 }
-
-       bg[NORMAL] = { 0.05, 0.05, 0.05 }
-       bg[ACTIVE] = { 0, 0, 0 }
-       bg[INSENSITIVE] = {0.12, 0.19, 0.25 } 
-       bg[SELECTED] = { 0, 0, 0 }
-       bg[PRELIGHT] = { 0, 0, 0 }
-
-       text[NORMAL] = { 0.70, 0.70, 0.70 }
-       text[ACTIVE] = { 0.70, 0.70, 0.70 }
-       text[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-       text[SELECTED] = { 0.70, 0.70, 0.70 }
-       text[PRELIGHT] = { 0.70, 0.70, 0.70 }
-
-       # used to draw the triangular indicators 
-
-       base[NORMAL] = { 0.80, 0.80, 0.80 }
-       base[ACTIVE] =  { 0.80, 0.80, 0.80 }
-       base[INSENSITIVE] = {0.6, 0.6, 0.6 }
-       base[SELECTED] = { 0.80, 0.80, 0.80 }
-       base[PRELIGHT] = { 0.80, 0.80, 0.80 }
-
-}
-
-style "ardour_button" ="default_buttons_menus"
-{
-       xthickness = 1
-       ythickness = 1
-}
-
-#---------------------------------------------------------------
-
-class "GtkWidget" style:highest "default_base"
-class "GtkScrollbar" style:highest "ardour_adjusters"
-class "GtkLabel" style:highest "default_buttons_menus"
-class "GtkButton" style:highest "ardour_button"
-class "GtkArrow" style:highest "tearoff_arrow"
-class "GtkProgressBar" style:highest "ardour_progressbars"
-
-widget "*FirstActionMessage" style:highest "first_action_message"
-widget "*VerboseCanvasCursor" style:highest "verbose_canvas_cursor"
-widget "*MarkerText" style:highest "marker_text"
-widget "*TimeAxisViewItemName*" style:highest "time_axis_view_item_name"
-#widget "*ExportProgress" style:highest "default_buttons_menus"
-widget "*ExportFileLabel" style:highest "small_bold_text"
-widget "*ExportFormatLabel" style:highest "medium_bold_text"
-widget "*ExportHeader" style:highest "small_bold_text"
-widget "*ExportFileDisplay" style:highest "medium_entry"
-widget "*ExportFormatDisplay" style:highest "medium_entry"
-widget "*ExportCheckbox" style:highest "small_entry"
-widget "*ExportTrackSelector*" style:highest "medium_entry_noselection_bg"
-widget "*EditModeSelector" style:highest "medium_bold_entry"
-widget "*SnapTypeSelector" style:highest "medium_bold_entry"
-widget "*SnapModeSelector" style:highest "medium_bold_entry"
-widget "*ZoomFocusSelector" style:highest "medium_bold_entry"
-widget "*ArdourContextMenu*" style:highest "default_buttons_menus"
-widget "*EditGroupTitleButton*" style:highest "default_buttons_menus"
-widget "*MixerGroupTitleButton*" style:highest "default_buttons_menus"
-widget "*ErrorLogCloseButton" style:highest "default_buttons_menus"
-widget "*EditorGTKButton*" style:highest "default_buttons_menus" 
-widget "*ToolbarButton" style:highest "default_buttons_menus"
-widget "*ToolbarButton*" style:highest "default_buttons_menus"
-widget "*CrossfadeEditButton" style:highest "default_buttons_menus"
-widget "*CrossfadeEditButton*" style:highest "default_buttons_menus"
-widget "*TrackHistoryButton*" style:highest "default_buttons_menus"
-widget "*TrackSizeButton*" style:highest "default_buttons_menus"
-widget "*TrackPlaylistButton*" style:highest "default_buttons_menus"
-widget "*TrackAutomationButton*" style:highest "default_buttons_menus"
-widget "*TrackGroupButton*" style:highest "default_buttons_menus"
-widget "*TrackMixButton*" style:highest "default_buttons_menus"
-widget "*TrackVisualButton*" style:highest "default_buttons_menus"
-widget "*TrackRemoveButton*" style:highest "default_buttons_menus"
-widget "*BaseButton" style:highest "default_buttons_menus"
-widget "*TakeButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerWidthButton" style:highest "default_buttons_menus"
-widget "*MixerHideButton" style:highest "default_buttons_menus"
-widget "*MixerSendButton" style:highest "default_buttons_menus"
-widget "*MixerSendButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerSendSwitch" style:highest "default_buttons_menus"
-widget "*MixerInsertButton" style:highest "default_buttons_menus"
-widget "*MixerInsertButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerInsertSwitch" style:highest "default_buttons_menus"
-widget "*MixerMonitorInputButton*" style:highest "very_small_button"
-widget "*MixerMonitorInputButton.*" style:highest "very_small_button"
-widget "*MixerIOButton" style:highest "very_small_button"
-widget "*MixerIOButtonLabel" style:highest "very_small_button"
-widget "*AddRouteDialogSpinner" style:highest "ardour_adjusters"
-widget "*AddRouteDialogRadioButton*" style:highest "preferences"
-widget "*OptionsNotebook" style:highest "preferences"
-widget "*OptionEditorToggleButton*" style:highest "preferences"
-widget "*OptionsLabel" style:highest "preferences"
-widget "*OptionEditorAuditionerLabel" style:highest "preferences"
-widget "*OptionsEntry" style:highest "option_entry"
-widget "*InspectorNotebook" style:highest "preferences"
-widget "*NewSessionDialog" style:highest "preferences"
-widget "*NewSessionDialogButton*" style:highest "preferences"
-widget "*MixerSendSwitch*" style:highest "very_small_red_active_and_selected_button"
-widget "*OptionEditorToggleButton" style:highest "small_red_active_and_selected_button"
-widget "*NewSessionDialogButton" style:highest "small_red_active_and_selected_button"
-widget "*RecordEnableButton" style:highest "track_rec_enable_button"
-widget "*RecordEnableButton-active" style:highest "track_rec_enable_button_active"
-widget "*RecordEnableButton-alternate" style:highest "track_rec_enable_button_alternate"
-widget "*MixerRecordEnableButton" style:highest "mixer_track_rec_enable_button"
-widget "*MixerRecordEnableButton-active" style:highest "mixer_track_rec_enable_button_active"
-widget "*MixerRecordEnableButton-alternate" style:highest "mixer_track_rec_enable_button_alternate"
-widget "*MuteButton" style:highest "mute_button"
-widget "*MuteButton-alternate" style:highest "mute_button_alternate"
-widget "*MuteButton-active" style:highest "mute_button_active"
-widget "*MixerMuteButton" style:highest "mixer_mute_button"
-widget "*MixerMuteButton-alternate" style:highest "mixer_mute_button_alternate"
-widget "*MixerMuteButton-active" style:highest "mixer_mute_button_active"
-widget "*SoloButton" style:highest "solo_button"
-widget "*SoloButton-alternate" style:highest "solo_button_alternate"
-widget "*SoloButton-active" style:highest "solo_button_active"
-widget "*MixerSoloButton" style:highest "mixer_solo_button"
-widget "*MixerSoloButton-alternate" style:highest "mixer_solo_button_alternate"
-widget "*MixerSoloButton-active" style:highest "mixer_solo_button_active"
-widget "*TrackLoopButton*" style:highest "track_loop_button"
-widget "*PanAutomationLineSelector*" style:highest "multiline_combo"
-widget "*EditorTimeButton*" style:highest "time_button"
-widget "*MixerPhaseInvertButton*" style:highest "very_small_button"
-widget "*MixerPhaseInvertButton.*" style:highest "very_small_button"
-widget "*MixerAutomationRecordingButton*" style:highest "very_small_button"
-widget "*MixerAutomationRecordingButton.*" style:highest "very_small_button"
-widget "*MixerAutomationModeButton*" style:highest "very_small_button"
-widget "*MixerAutomationModeButton.*" style:highest "very_small_button"
-widget "*MixerAutomationPlaybackButton*" style:highest "very_small_button"
-widget "*MixerAutomationPlaybackButton.*" style:highest "very_small_button"
-widget "*MixerNameButton" style:highest "very_small_button"
-widget "*MixerNameButtonLabel" style:highest "very_small_button"
-widget "*MixerGroupButton" style:highest "very_small_button"
-widget "*MixerGroupButtonLabel" style:highest "very_small_button"
-widget "*MixerCommentButton" style:highest "very_small_button"
-widget "*MixerCommentButton*" style:highest "very_small_button"
-widget "*EditGroupButton" style:highest "very_small_button"
-widget "*EditGroupButtonLabel" style:highest "very_small_button"
-widget "*TransportButton" style:highest "transport_rec_button"
-widget "*TransportButton-active" style:highest "transport_button_active"
-widget "*ShuttleButton" style:highest "transport_button"
-widget "*ShuttleButton*" style:highest "transport_button"
-widget "*ShuttleDisplay" style:highest "transport_button"
-widget "*ShuttleDisplay*" style:highest "transport_button"
-widget "*ShuttleControl" style:highest "shuttle_control"
-widget "*TransportRecButton" style:highest "transport_rec_button"
-widget "*TransportRecButton*" style:highest "transport_rec_button"
-widget "*TransportRecButton-active" style:highest "transport_rec_button_active"
-widget "*TransportRecButton-active*" style:highest "transport_rec_button_active"
-widget "*TransportRecButton-alternate" style:highest "transport_rec_button_alternate"
-widget "*TransportRecButton-alternate*" style:highest "transport_rec_button_alternate"
-widget "*TransportRecButton*" style:highest "transport_rec_button"
-widget "*RecordingXrunWarningWindow" style:highest "xrun_warn"
-widget "*RecordingXrunWarningWindow*" style:highest "xrun_warn"
-/*widget "*MainMenuBar" style:highest "menu_bar_base"*/
-widget "*ErrorMessage" style:highest "error_message"
-widget "*FatalMessage" style:highest "fatal_message"
-widget "*InfoMessage" style:highest "info_message"
-widget "*WarningMessage" style:highest "warning_message"
-widget "*BigClockNonRecording" style:highest "non_recording_big_clock_display"
-widget "*BigClockRecording" style:highest "recording_big_clock_display"
-widget "*TransportClockDisplay" style:highest "transport_clock_display"
-widget "*SecondaryClockDisplay" style:highest "transport_clock_display"
-widget "*TransportClockDisplayDelta" style:highest "transport_clock_display_delta"
-widget "*SecondaryClockDisplayDelta" style:highest "transport_clock_display_delta"
-widget "*AudioClockFramesUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockFramesLowerInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockSMPTEUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockSMPTELowerInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockBBTUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockBBTLowerInfo" style:highest "tempo_meter_clock_display"
-widget "*SelectionStartClock" style:highest "default_clock_display"
-widget "*SelectionEndClock" style:highest "default_clock_display"
-widget "*EditPointClock" style:highest "default_clock_display"
-widget "*PreRollClock" style:highest "default_clock_display"
-widget "*PostRollClock" style:highest "default_clock_display"
-widget "*NudgeClock" style:highest "default_clock_display"
-widget "*ZoomRangeClock" style:highest "default_clock_display"
-widget "*SMPTEOffsetClock" style:highest "default_clock_display"
-widget "*TransportLabel" style:highest "small_bold_text"
-widget "*TakeLabel" style:highest "small_bold_text"
-widget "*LocationLabel" style:highest "small_bold_text"
-widget "*WipeLabel" style:highest "small_bold_text"
-widget "*TakeTagLabel" style:highest "small_bold_text"
-widget "*ToolBarLabel" style:highest "small_bold_text"
-widget "*EditorDisplayLabel" style:highest "small_bold_text"
-widget "*NewSessionLabel" style:highest "large_text"
-widget "*GlobalButtonLabel" style:highest "default_buttons_menus"
-widget "*ClickButton" style:highest "medium_entry"
-widget "*RegionNameDisplay" style:highest "medium_entry"
-widget "*PluginDisplay" style:highest "medium_entry"
-widget "*SelectionDisplay" style:highest "medium_entry"
-widget "*HistorySelector" style:highest "medium_entry"
-widget "*LocationSelector" style:highest "medium_entry"
-widget "*TakeSelector" style:highest "medium_entry"
-widget "*RegionSelector" style:highest "medium_entry"
-widget "*SMPTERuler" style:highest "editor_time_ruler"
-widget "*BBTRuler" style:highest "editor_time_ruler"
-widget "*FramesRuler" style:highest "editor_time_ruler"
-widget "*MinSecRuler" style:highest "editor_time_ruler"
-widget "*BaseFrame" style:highest "base_frame"
-
-widget "*AudioTrackStripBase" style:highest "audio_track_base"
-widget "*AudioBusStripBase" style:highest "audio_bus_base"
-widget "*MidiTrackStripBase" style:highest "midi_track_base"
-widget "*AudioTrackStripBaseInactive" style:highest "track_controls_inactive"
-widget "*AudioBusStripBaseInactive" style:highest "track_controls_inactive"
-widget "*MidiTrackStripBaseInactive" style:highest "track_controls_inactive"
-widget "*FaderMetricsStrip" style:highest "audio_track_metrics"
-widget "*AudioTrackMetrics" style:highest "audio_track_metrics"
-widget "*AudioBusMetrics" style:highest "audio_bus_metrics"
-widget "*AudioTrackMetricsInactive" style:highest "audio_track_metrics_inactive"
-widget "*AudioBusMetricsInactive" style:highest "audio_bus_metrics_inactive"
-
-widget "*TimeAxisViewControlsBaseUnselected" style:highest "audio_track_base"
-widget "*AudioTrackControlsBaseUnselected" style:highest "audio_track_base"
-widget "*MidiTrackControlsBaseUnselected" style:highest "midi_track_base"
-widget "*AudioTrackFader" style:highest "gain_fader"
-
-widget "*BusControlsBaseUnselected" style:highest "audio_bus_base"
-widget "*AudioBusFader" style:highest "gain_fader"
-widget "*TrackSeparator" style:highest "track_separator"
-widget "*TrackEditIndicator0*" style:highest "edit_group_0"
-widget "*TrackEditIndicator1*" style:highest "edit_group_1"
-widget "*TrackEditIndicator2*" style:highest "edit_group_2"
-widget "*TrackEditIndicator3*" style:highest "edit_group_3"
-widget "*TrackEditIndicator4*" style:highest "edit_group_3"
-widget "*TrackEditIndicator5*" style:highest "edit_group_3"
-widget "*TrackEditIndicator6*" style:highest "edit_group_3"
-widget "*TrackEditIndicator7*" style:highest "edit_group_3"
-widget "*EditorTrackNameDisplay" style:highest "track_name_display"
-widget "*EditorTrackNameDisplay*" style:highest "track_name_display"
-widget "*EditorActiveTrackNameDisplay" style:highest "active_track_name_display"
-widget "*EditorActiveTrackNameDisplay*" style:highest "active_track_name_display"
-widget "*CrossfadeEditAuditionButton" style:highest "red_when_active"
-widget "*CrossfadeEditAuditionButton*" style:highest "red_when_active"
-widget "*CrossfadeEditCurveButton" style:highest "red_when_active"
-widget "*CrossfadeEditCurveButton*" style:highest "red_when_active"
-widget "*CrossfadeEditLabel" style:highest "medium_text"
-widget "*CrossfadeEditFrame" style:highest "base_frame"
-widget "*MouseModeButton" style:highest "default_buttons_menus"
-widget "*MouseModeButton*" style:highest "default_buttons_menus"
-widget "*EditorMainCanvas" style:highest "main_canvas_area"
-widget "*AudioTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*BusControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*AutomationTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*AutomationTrackName" style:highest "automation_track_name"
-widget "*AudioTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*BusControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*AutomationTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*AudioTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*MidiTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*BusControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*AutomationTrackControlsBase" style:highest "automation_track_controls_base"
-widget "*AutomationTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-/*widget "*EditorMenuBar*" style:highest "black_mackie_menu_bar"
-widget "*MainMenuBar*" style:highest "black_mackie_menu_bar"
-*/
-widget "*ZoomClickBox" style:highest "medium_bold_entry"
-widget "*PluginParameterLabel" style:highest "medium_text"
-widget "*PluginNameInfo" style:highest "plugin_name_text"
-widget "*PluginMakerInfo" style:highest "plugin_maker_text"
-widget "*PluginParameterInfo" style:highest "medium_text"
-widget "*MotionControllerValue" style:highest "medium_entry"
-widget "*ParameterValueDisplay" style:highest "medium_bold_entry"
-widget "*PluginUIClickBox" style:highest "medium_bold_entry"
-widget "*PluginUIClickBox*" style:highest "medium_bold_entry"
-widget "*PluginSlider" style:highest "plugin_slider"
-widget "*RedirectSelector" style:highest "redirect_list_display"
-widget "*RedirectSelector.*" style:highest "redirect_list_display"
-widget "*EditGroupDisplay" style:highest "treeview_display"
-widget "*TrackListDisplay" style:highest "treeview_display"
-widget "*RegionListDisplay" style:highest "treeview_display"
-widget "*NamedSelectionDisplay" style:highest "treeview_display"
-widget "*SnapshotDisplay" style:highest "treeview_display"
-widget "*MixerTrackCommentArea" style:highest "option_entry"
-widget "*MixerPanZone" style:highest "pan_zone"
-widget "*MixerTrackDisplayList" style:highest "treeview_display"
-widget "*MixerSnapshotDisplayList" style:highest "treeview_display"
-widget "*MixerAuxDisplayList" style:highest "treeview_display"
-widget "*MixerGroupList" style:highest "treeview_display"
-widget "*RegionEditorLabel" style:highest "medium_text"
-widget "*RegionEditorSmallLabel" style:highest "small_text"
-widget "*RegionEditorEntry" style:highest "medium_entry"
-widget "*RegionEditorClock" style:highest "default_clock_display"
-widget "*RegionEditorToggleButton" style:highest "paler_red_when_active"
-widget "*RegionEditorToggleButton*" style:highest "paler_red_when_active"
-widget "*MixerStripSpeedBase" style:highest "small_entry"
-widget "*MixerStripSpeedBase*" style:highest "small_entry"
-widget "*MixerStripSpeedBaseNotOne" style:highest "small_red_on_black_entry"
-widget "*MixerStripSpeedBaseNotOne*" style:highest "small_red_on_black_entry"
-widget "*MixerStripGainDisplay" style:highest "small_entry"
-widget "*MixerStripGainDisplay*" style:highest "small_entry"
-widget "*MixerStripGainUnitButton" style:highest "very_small_button"
-widget "*MixerStripGainUnitButton*" style:highest "very_small_button"
-widget "*MixerStripMeterPreButton" style:highest "very_small_button"
-widget "*MixerStripMeterPreButton*" style:highest "very_small_button"
-widget "*MixerStripPeakDisplay*" style:highest "red_active_small_entry"
-widget "*MixerStripPeakDisplayPeak*" style:highest "peak_display_peaked_entry"
-widget "*MixerStripSelectedFrame" style:highest "selected_strip_frame"
-widget "*MixerStripFrame" style:highest "base_frame"
-widget "*HWMonitorButton" style:highest "red_when_active"
-widget "*HWMonitorButton*" style:highest "red_when_active"
-widget "*BypassButton" style:highest "red_when_active"
-widget "*BypassButton*" style:highest "red_when_active"
-widget "*TransportSoloAlert" style:highest "flashing_alert"
-widget "*TransportSoloAlert.*" style:highest "flashing_alert"
-widget "*TransportAuditioningAlert" style:highest "flashing_alert"
-widget "*TransportAuditioningAlert.*" style:highest "flashing_alert"
-widget "*FadeCurve" style:highest "medium_bold_entry"
-widget "*FadeCurve*" style:highest "medium_bold_entry"
-widget "*IOSelectorButton" style:highest "default_buttons_menus"
-widget "*IOSelectorButton*" style:highest "default_buttons_menus"
-widget "*IOSelectorList" style:highest "medium_entry_noselection_fg"
-widget "*IOSelectorPortList" style:highest "io_selector_port_list"
-widget "*IOSelectorPortList.*" style:highest "io_selector_port_list"
-widget "*IOSelectorPortListSelected" style:highest "selected_io_selector_port_list"
-widget "*IOSelectorPortListSelected.*" style:highest "selected_io_selector_port_list"
-widget "*IOSelectorNotebook" style:highest "io_selector_notebook"
-widget "*IOSelectorNotebookTab" style:highest "io_selector_notebook"
-widget "*IOSelectorFrame" style:highest "base_frame"
-widget "*ConnectionEditorButton" style:highest "default_buttons_menus"
-widget "*ConnectionEditorButton*" style:highest "default_buttons_menus"
-widget "*ConnectionEditorList" style:highest "medium_entry_noselection_fg"
-widget "*ConnectionEditorConnectionList" style:highest "medium_entry"
-widget "*ConnectionEditorPortList" style:highest "io_selector_port_list"
-widget "*ConnectionEditorPortListSelected" style:highest "selected_io_selector_port_list"
-widget "*ConnectionEditorNotebook" style:highest "io_selector_notebook"
-widget "*ConnectionEditorNotebookTab" style:highest "io_selector_notebook"
-widget "*ConnectionEditorFrame" style:highest "base_frame"
-widget "*RouteParamsListDisplay" style:highest "inspector_track_list_display"
-widget "*RouteParamsPreListDisplay" style:highest "inspector_redirect_list_display"
-widget "*RouteParamsPostListDisplay" style:highest "inspector_redirect_list_display"
-widget "*TearOffArrow" style:highest "tearoff_arrow"
-widget "*RouteParamsTitleButton" style:highest "medium_text"
-widget "*RouteParamsTitleLabel" style:highest "medium_text"
-widget "*PluginAutomateRecordButton" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomateRecordButton*" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomatePlayButton" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomatePlayButton*" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomateButton" style:highest "small_button"
-widget "*PluginAutomateButton*" style:highest "small_button"
-widget "*PluginSaveButton" style:highest "small_button"
-widget "*PluginSaveButton*" style:highest "small_button"
-widget "*PluginLoadButton" style:highest "small_button"
-widget "*PluginLoadButton*" style:highest "small_button"
-
-widget "*MetricDialogFrame" style:highest "base_frame"
-widget "*MetricEntry" style:highest "medium_bold_entry"
-widget "*MetricButton" style:highest "default_buttons_menus"
-widget "*MetricButton.*" style:highest "default_buttons_menus"
-widget "*MetricLabel" style:highest "medium_text"
-widget "*TimeStretchButton" style:highest "default_buttons_menus"
-widget "*TimeStretchButton.*" style:highest "default_buttons_menus"
-widget "*TimeStretchProgress" style:highest "default_buttons_menus"
-widget "*ChoiceWindow" style:highest "default_buttons_menus"
-widget "*ChoicePrompt" style:highest "default_buttons_menus"
-widget "*ChoiceButton" style:highest "default_buttons_menus"
-widget "*ChoiceButton*" style:highest "default_buttons_menus"
-widget "*SelectionModeButton" style:highest "default_buttons_menus"
-widget "*SelectionModeButton*" style:highest "default_buttons_menus"
-widget "*TrackLabel" style:highest "medium_text"
-widget "*TrackPlugName" style:highest "medium_text"
-widget "*TrackParameterName" style:highest "small_text"
-widget "*AddRouteDialog*" style:highest "medium_text"
-widget "*AddRouteDialog.GtkLabel" style:highest "medium_text"
-widget "*AddRouteDialogChannelChoice" style:highest "medium_bold_entry"
-widget "*AddRouteDialogSpinner" style:highest "medium_bold_entry"
-widget "*AddRouteDialogSpinner*" style:highest "medium_bold_entry"
-widget "*AddRouteDialogRadioButton" style:highest "red_when_active"
-widget "*AddRouteDialogButton" style:highest "default_buttons_menus"
-widget "*AddRouteDialogNameTemplateEntry" style:highest "medium_bold_entry"
-widget "*NewSessionIOLabel" style:highest "larger_bold_text"
-widget "*NewSessionSR1Label" style:highest "red_medium_text"
-widget "*NewSessionSR2Label" style:highest "medium_text"
-widget "*NewSessionChannelChoice" style:highest "medium_bold_entry"
-widget "*NewSessionMainButton" style:highest "larger_bold_text"
-widget "*NewSessionMainButton*" style:highest "larger_bold_text"
-widget "*NewSessionMainLabel" style:highest "larger_bold_text"
-widget "*LocationEditRowClock" style:highest "location_rows_clock"
-widget "*LocationEditNameLabel" style:highest "medium_text"
-widget "*LocationEditSetButton" style:highest "location_row_button"
-widget "*LocationEditSetButton*" style:highest "location_row_button"
-widget "*LocationEditGoButton" style:highest "location_row_button"
-widget "*LocationEditGoButton*" style:highest "location_row_button"
-widget "*LocationEditCdButton" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditCdButton*" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditHideButton" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditHideButton*" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditNumberLabel" style:highest "small_text"
-widget "*LocationLocEditorFrame" style:highest "base_frame"
-widget "*LocationRangeEditorFrame" style:highest "base_frame"
-widget "*LocationEditNameEntry" style:highest "option_entry"
-widget "*LocationAddLocationButton" style:highest "default_buttons_menus"
-widget "*LocationAddLocationButton*" style:highest "default_buttons_menus"
-widget "*LocationAddRangeButton" style:highest "default_buttons_menus"
-widget "*LocationAddRangeButton*" style:highest "default_buttons_menus"
-widget "*LocationEditRemoveButton" style:highest "location_row_button"
-widget "*LocationEditRemoveButton*" style:highest "location_row_button"
-widget "*PanSlider" style:highest "pan_slider"
-widget "*PanningLinkButton" style:highest "mixer_red_active_button"
-widget "*PanningLinkButton.*" style:highest "mixer_red_active_button"
-widget "*PanningLinkDirectionButton" style:highest "very_small_button"
-widget "*PanningLinkDirectionButton.*" style:highest "very_small_button"
-widget "*ChannelCountSelector" style:highest "medium_bold_entry"
-widget "*ChannelCountSelector.GtkArrow" style:highest "default_buttons_menus"
-widget "*RegionListWholeFile" style:highest "treeview_parent_node"
-widget "*EditorHScrollbar" style:highest "editor_hscrollbar"
-
diff --git a/gtk2_ardour/ardour2_ui_default.conf b/gtk2_ardour/ardour2_ui_default.conf
deleted file mode 100644 (file)
index c45e4da..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Ardour>
-  <UI>
-    <Option name="ui-rc-file" value="ardour2_ui_dark.rc"/>
-  </UI>
-  <Canvas>
-    <Option name="waveform" value="000000cc"/>
-    <Option name="clipped waveform" value="ff0000e5"/>
-    <Option name="region base" value="bfbfc1aa"/>
-    <Option name="selected region base" value="b591a8ff"/>
-    <Option name="midi frame base" value="698f9d6d"/>
-    <Option name="audio track base" value="c6d3d868"/>
-    <Option name="audio bus base" value="dbd1ea68"/>
-    <Option name="midi track base" value="c67e7e5f"/>
-    <Option name="midi bus base" value="ffceea40"/>
-    <Option name="time stretch fill" value="e2b5b596"/>
-    <Option name="time stretch outline" value="63636396"/>
-    <Option name="automation line" value="44bc59ff"/>
-    <Option name="processor automation line" value="7aa3f9ff"/>
-    <Option name="control point fill" value="ffffff66"/>
-    <Option name="control point outline" value="ffffffaa"/>
-    <Option name="entered control point outline" value="ff0000ee"/>
-    <Option name="entered control point selected" value="ff3535ff"/>
-    <Option name="entered control point" value="ffffffaa"/>
-    <Option name="control point selected" value="00ff00ff"/>
-    <Option name="control point" value="ff0000ff"/>
-    <Option name="automation track fill" value="a0a0ce68"/>
-    <Option name="automation track outline" value="282828ff"/>
-    <Option name="crossfade editor base" value="282d49ff"/>
-    <Option name="crossfade editor line" value="000000ff"/>
-    <Option name="selected crossfade editor line" value="00dbdbff"/>
-    <Option name="crossfade editor line shading" value="00a0d154"/>
-    <Option name="crossfade editor point fill" value="00ff00ff"/>
-    <Option name="crossfade editor point outline" value="0000ffff"/>
-    <Option name="crossfade editor wave" value="ffffff28"/>
-    <Option name="selected crossfade editor wave" value="f9ea14a0"/>
-    <Option name="crossfade line" value="000000ff"/>
-    <Option name="active crossfade" value="e8ed3d77"/>
-    <Option name="inactive crossfade" value="e8ed3d77"/>
-    <Option name="location marker" value="c4f411ff"/>
-    <Option name="location range" value="497a59ff"/>
-    <Option name="location cd marker" value="1ee8c4ff"/>
-    <Option name="location loop" value="35964fff"/>
-    <Option name="location punch" value="7c3a3aff"/>
-    <Option name="verbose canvas cursor" value="f4f214bc"/>
-    <Option name="marker label" value="000000ff"/>
-    <Option name="marker bar separator" value="aaaaaa77"/>
-    <Option name="tempo bar" value="72727fff"/>
-    <Option name="meter bar" value="666672ff"/>
-    <Option name="marker bar" value="a1a1adff"/>
-    <Option name="cd marker bar" value="9898a3ff"/>
-    <Option name="range marker bar" value="7f7f8cff"/>
-    <Option name="transport marker bar" value="8c8c96ff"/>
-    <Option name="range drag bar rect" value="969696c6"/>
-    <Option name="range drag rect" value="82c696c6"/>
-    <Option name="transport drag rect" value="969696c6"/>
-    <Option name="marker drag line" value="004f00f9"/>
-    <Option name="transport loop rect" value="1e7728f9"/>
-    <Option name="transport punch rect" value="6d2828e5"/>
-    <Option name="punch line" value="a80000ff"/>
-    <Option name="zoom rect" value="c6d1b26d"/>
-    <Option name="rubber band rect" value="c6c6c659"/>
-    <Option name="entered gain line" value="dd6363ff"/>
-    <Option name="entered automation line" value="dd6363ff"/>
-    <Option name="entered marker" value="dd6363ff"/>
-    <Option name="meter marker" value="f2425bff"/>
-    <Option name="tempo marker" value="f2425bff"/>
-    <Option name="measure line beat" value="b5b5b576"/>
-    <Option name="measure line bar" value="d9d9d99c"/>
-    <Option name="ghost track base" value="44007c7f"/>
-    <Option name="ghost track wave" value="02fd004c"/>
-    <Option name="ghost track wave clip" value="ff000000"/>
-    <Option name="ghost track zero line" value="e500e566"/>
-    <Option name="image track" value="ddddd8ff"/>
-    <Option name="marker track" value="ddddd8ff"/>
-    <Option name="zero line" value="b5b5b5ff"/>
-    <Option name="gain line" value="00bc20ff"/>
-    <Option name="gain line inactive" value="9fbca4c5"/>
-    <Option name="recording rect" value="e5c6c6ff"/>
-    <Option name="selection rect" value="e8f4d377"/>
-    <Option name="selection" value="636363b2"/>
-    <Option name="vestigial frame" value="0000000f"/>
-    <Option name="time axis frame" value="0000000f"/>
-    <Option name="name highlight fill" value="0000ffff"/>
-    <Option name="name highlight outline" value="7c00ff96"/>
-    <Option name="frame handle" value="7c00ff96"/>
-    <Option name="trim handle locked" value="ea0f0f28"/>
-    <Option name="trim handle" value="1900ff44"/>
-    <Option name="edit point" value="0000ffff"/>
-    <Option name="play head" value="ff0000ff"/>
-    <Option name="meter fill min" value="33dd33ff"/>
-    <Option name="meter fill mid" value="eeee33ff"/>
-    <Option name="meter fill max" value="ee3333ff"/>
-    <Option name="meter fill clip" value="ff0000ff"/>
-    <Option name="midi select rect outline" value="5555ffff"/>
-    <Option name="midi select rect fill" value="8888ff88"/>
-    <Option name="midi note outline min" value="22ff22b0"/>
-    <Option name="midi note outline mid" value="ffff22b0"/>
-    <Option name="midi note outline max" value="ff2222b0"/>
-    <Option name="midi note fill min" value="33ee338a"/>
-    <Option name="midi note fill mid" value="eeee338a"/>
-    <Option name="midi note fill max" value="ee33338a"/>
-    <Option name="midi note selected outline" value="5566ffee"/>
-    <Option name="piano roll white" value="aa585865"/>
-    <Option name="piano roll black" value="88393b6b"/>
-    <Option name="piano roll black outline" value="b5b5b576"/>
-  </Canvas>
-</Ardour>
diff --git a/gtk2_ardour/ardour2_ui_light.rc.in b/gtk2_ardour/ardour2_ui_light.rc.in
deleted file mode 100644 (file)
index e5cf578..0000000
+++ /dev/null
@@ -1,1561 +0,0 @@
-#
-# This is the GTK style file for Ardour
-#
-
-style "very_small_text"
-{
-       font_name = "%FONT_SMALLER%"
-}
-
-style "small_text"
-{
-       font_name = "%FONT_SMALL%"
-}
-
-style "small_bold_text"
-{
-       font_name = "%FONT_BOLD_SMALL%"
-}
-
-style "medium_bold_text"
-{
-       font_name = "%FONT_BOLD_NORMAL%"
-}
-
-style "medium_text"
-{
-       font_name = "%FONT_NORMAL%"
-}
-
-style "red_medium_text" = "medium_text"
-{      
-       fg[NORMAL] = { 1.0, 0, 0 }
-       fg[ACTIVE] = { 1.0, 0, 0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-}
-
-
-style "large_text"
-{
-       font_name = "%FONT_LARGE%"
-}
-
-style "larger_bold_text"
-{
-       font_name = "%FONT_BOLD_BIGGER%"
-}
-
-style "plugin_name_text"
-{
-       font_name = "%FONT_BOLD_LARGER%"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-}
-
-style "plugin_maker_text"
-{
-       font_name = "%FONT_BOLD_BIGGER%"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-}
-
-style "automation_track_name"
-{
-       font_name = "%FONT_ITALIC_NORMAL%"
-}
-
-style "first_action_message" 
-{
-       font_name = "%FONT_HUGER%"
-}
-
-style "verbose_canvas_cursor"
-{
-       font_name = "%FONT_BOLD_LARGER%"
-}
-
-style "marker_text" 
-{
-       font_name = "%FONT_NORMAL%"
-}
-
-style "time_axis_view_item_name"
-{
-       font_name = "%FONT_SMALLER%"
-}
-
-style "default_base" = "medium_text"
-{
-  
-  GtkButton::default_border = { 0, 0, 0, 0 }
-  GtkButton::default_outside_border = { 0, 0, 0, 0 }
-  GtkButton::button_relief = GTK_RELIEF_NONE
-  GtkTreeView::vertical-padding = 0
-  GtkTreeView::horizontal-padding = 0
-  GtkTreeView::even-row-color = { 0.70, 0.70, 0.70 }
-  GtkTreeView::odd-row-color = { 0.64, 0.64, 0.64 }
-  
-  fg[NORMAL] = { 0.30, 0.30, 0.40 }    
-  fg[ACTIVE] = { 0.30, 0.30, 0.40 }    
-  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
-  fg[INSENSITIVE] = { 0.30, 0.30, 0.40 }       
-  fg[SELECTED] = { 0.30, 0.30, 0.40 }  
-  
-  bg[NORMAL] = { 0.80, 0.80, 0.80 }
-  bg[ACTIVE] = { 0.80, 0.80, 0.80 }
-  bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-  bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-  bg[SELECTED] = { 0.80, 0.80, 0.80 }
-  
-  text[NORMAL] = { 0.30, 0.30, 0.40 }
-  text[ACTIVE] = { 0.30, 0.30, 0.40 }
-  text[PRELIGHT] = { 0.30, 0.30, 0.40 }
-  text[INSENSITIVE] = { 0.30, 0.30, 0.40 }
-  text[SELECTED] = { 0, 0, 0 }
-  
-  base[ACTIVE]     = { 0.80, 0.80, 0.80 }
-  base[NORMAL]      =  { 0.80, 0.80, 0.80 }
-  base[PRELIGHT]     = { 0.90, 0.90, 0.90 }
-  base[INSENSITIVE]  = "#4c5159"
-  base[SELECTED]     = { 0.60, 0.60, 0.80 }
-
-  engine "clearlooks" 
-  {
-    menubarstyle      = 0       # 0 = flat, 1 = sunken, 2 = flat gradient
-    menuitemstyle     = 0       # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button)
-    listviewitemstyle = 0       # 0 = flat, 1 = 3d-ish (gradient)
-    progressbarstyle  = 1       # 0 = candy bar, 1 = fancy candy bar, 2 = flat
-  }
-}
-
-style "base_frame"
-{
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[NORMAL] = { 0.35, 0.35, 0.40 }
-}
-
-style "transport_base" = "medium_bold_text"
-{
-  bg[NORMAL] = { 0.10, 0.10, 0.10 }
-  bg[ACTIVE] = { 0, 0, 0 }
-  bg[PRELIGHT] = { 0, 0, 0 }
-  bg[INSENSITIVE] = { 0, 0, 0 }
-  bg[SELECTED] = { 0, 0, 0 }
-}
-/*
-style "black_mackie_menu_bar"
-{
-  font_name = "%FONT_BOLD_NORMAL%"
-  fg[NORMAL] = { 1.0, 1.0, 1.0 }
-  bg[NORMAL] = { 0, 0, 0 }
-}
-*/
-style "default_buttons_menus" 
-{
-  font_name = "%FONT_NORMAL%"
-  fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-  
-  bg[NORMAL] = { 0.80, 0.80, 0.80 }
-  bg[ACTIVE] = "#565690"
-  bg[PRELIGHT] = { 0.70, 0.70, 0.90 }
-  bg[INSENSITIVE] = { 0.70, 0.70, 0.90 }
-  bg[SELECTED] = { 0.70, 0.70, 0.90 }
-}
-
-style "very_small_button" = "default_buttons_menus"
-{
-       font_name = "%FONT_SMALLER%"
-       ythickness = 0
-       xthickness = 0
-}
-
-style "small_button" = "default_buttons_menus"
-{
-}
-
-style "very_small_red_active_and_selected_button" = "very_small_button"
-{
-       bg[ACTIVE] = { 1.0, 0, 0}
-       bg[SELECTED] = { 1.0, 0, 0}
-}
-
-style "small_red_active_and_selected_button" = "small_button"
-{
-       fg[ACTIVE] = { 0, 0, 0 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-       bg[SELECTED] = { 1.0, 0, 0}
-}
-
-style "gain_fader"
-{
-       bg[NORMAL] =   { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] =   { 0.80, 0.80, 0.80 }
-}
-
-
-style "track_rec_enable_button" = "small_button"
-{
-}
-
-style "track_rec_enable_button_active" = "small_button"
-{
-       fg[SELECTED] = { 0.0, 0.0, 0.0 }
-       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
-       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
-       fg[NORMAL] = { 0.0, 0.0, 0.0 }
-
-       bg[NORMAL] =   { 1.0, 0.0, 0.0 }
-       bg[ACTIVE] =   { 1.0, 0.0, 0.0 }
-       bg[SELECTED] =   { 1.0, 0.0, 0.0 }
-       bg[PRELIGHT] =   { 1.0, 0.0, 0.0 }
-}
-
-style "track_rec_enable_button_alternate" = "small_button"
-{
-       fg[SELECTED] = { 0.0, 0.0, 0.0 }
-       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
-       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
-       fg[NORMAL] = { 0.0, 0.0, 0.0 }
-
-       bg[NORMAL] =   { 0.91, 0.68, 0.68}
-       bg[ACTIVE] =   { 0.91, 0.68, 0.68}
-       bg[SELECTED] =   { 0.91, 0.68, 0.68}
-       bg[PRELIGHT] =   { 0.91, 0.68, 0.68}
-}
-
-style "mixer_track_rec_enable_button" = "track_rec_enable_button"
-{
-       font_name = "%FONT_SMALLER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_track_rec_enable_button_alternate" = "track_rec_enable_button_alternate"
-{
-       font_name = "%FONT_SMALLER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_track_rec_enable_button_active" = "track_rec_enable_button_active"
-{
-       font_name = "%FONT_SMALLER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "solo_button" = "small_button"
-{
-}
-
-style "solo_button_alternate" = "small_button"
-{
-       bg[NORMAL] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[ACTIVE] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[SELECTED] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[PRELIGHT] = { 0.19, 0.97, 0.69 } # solo-safe
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-
-style "solo_button_active" = "small_button"
-{
-       bg[NORMAL] = { 0.66, 0.97, 0.19 }   # solo
-       bg[ACTIVE] = { 0.66, 0.97, 0.19 }   # solo
-       bg[SELECTED] = { 0.66, 0.97, 0.19 }   # solo
-       bg[PRELIGHT] = { 0.66, 0.97, 0.19 }   # solo
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mixer_solo_button" = "solo_button"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_solo_button_alternate" = "solo_button_alternate"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-style "mixer_solo_button_active" = "solo_button_active"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-
-style "mute_button" = "small_button"
-{
-}
-
-style "mute_button_alternate" = "small_button"
-{
-       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
-       bg[NORMAL] = { 1.0, 0.98, 0.53 }
-       bg[SELECTED] = { 1.0, 0.98, 0.53 }
-       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
-
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mute_button_active" = "small_button"
-{
-       bg[NORMAL] = { 0.90, 0.89, 0.73 }
-       bg[ACTIVE] = { 0.90, 0.89, 0.73 }
-       bg[PRELIGHT] = { 0.90, 0.89, 0.73 }
-       bg[SELECTED] = { 0.90, 0.89, 0.73 }
-
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mixer_mute_button" = "mute_button"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button_alternate" = "mute_button_alternate"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button_active" = "mute_button_active"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "multiline_combo" = "small_button"
-{
-       font_name = "%FONT_NORMAL%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button" = "mute_button"
-{
-       font_name = "%FONT_SMALLERER%"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "track_loop_button" = "small_button"
-{
-       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
-       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
-
-}
-
-style "mixer_red_active_button" = "very_small_button"
-{
-       fg[ACTIVE] = { 0, 1.0, 1.0 }
-       bg[ACTIVE] = { 0.7, 0, 0 }
-
-       base[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-}
-
-style "time_button" = "default_buttons_menus"
-{
-       font_name = "%FONT_NORMAL%"
-}
-
-style "transport_button"
-{
-}
-
-style "transport_button_active"
-{
-       bg[NORMAL] = { 0.50, 1.0, 0.50 }
-       bg[ACTIVE] = { 0.50, 1.0, 0.50 }
-       bg[SELECTED] = { 0.50, 1.0, 0.50 }
-       bg[PRELIGHT] = { 0.50, 1.0, 0.50 }
-
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "transport_rec_button"
-{
-}
-
-style "transport_rec_button_active"
-{
-       bg[ACTIVE] = { 1.0, 0, 0 }
-       bg[NORMAL] = { 1.0, 0, 0 }
-       bg[SELECTED] = { 1.0, 0, 0 }
-       bg[PRELIGHT] = { 1.0, 0, 0 }
-}
-
-style "transport_rec_button_alternate"
-{
-       bg[PRELIGHT] = { 0.91, 0.68, 0.68 }
-       bg[NORMAL] = { 0.91, 0.68, 0.68 }
-       bg[SELECTED] = { 0.91, 0.68, 0.68 }
-       bg[ACTIVE] = { 0.91, 0.68, 0.68 }
-}
-
-style "shuttle_control" = "very_small_text"
-{
-       fg[NORMAL] = { 0.85, 0.92, 0.98 }
-       fg[ACTIVE] = { 0.85, 0.92, 0.98 }
-       fg[PRELIGHT] = { 0.85, 0.92, 0.98 }
-       fg[SELECTED] = { 0.85, 0.92, 0.98 }
-       fg[INSENSITIVE] = { 0.85, 0.92, 0.98 }
-
-       bg[NORMAL] = { 0.26, 0.26, 0.31 }
-       bg[PRELIGHT] = { 0.26, 0.26, 0.31 }
-       bg[INSENSITIVE] = { 0.26, 0.26, 0.31 }
-       bg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       bg[SELECTED] = { 1.0, 0.04, 0.04 }
-}
-
-style "ardour_adjusters" = "default_buttons_menus"
-{
-       bg[NORMAL] = { 0.60, 0.60, 0.60 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.06, 0.06, 0.06 }
-}
-
-style "editor_hscrollbar" = "ardour_adjusters"
-{
-       #
-       # special case: we want this scrollbar to be as tall as the
-       # zoom focus selector combobox. scrollbars don't expand to
-        # fill the space available to them, so we have to explicitly
-       # make it bigger.
-       # 
-       GtkRange::slider_width = 27
-       GtkScrollbar::slider_width = 27
-}
-
-style "ardour_progressbars" = "default_buttons_menus"
-{ 
-  bg[NORMAL] = { 0, 0, 0 }
-  bg[PRELIGHT] = { 0.00, 0.36, 0.40 }
-}
-
-style "preferences"  = "default_base"
-{
-       font_name = "%FONT_NORMAL%"
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "option_entry"  = "default_base"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       
-       base[INSENSITIVE] = { 0.07, 0.07, 0.12 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       bg[ACTIVE] = { 0.35, 0.35, 0.40 }
-}
-
-style "red_when_active" = "medium_text"
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-}
-
-style "xrun_warn"  
-{
-       font_name = "%FONT_BOLD_LARGE%"
-
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       text[NORMAL] = { 1.0, 1.0, 1.0 }
-       text[ACTIVE] = { 1.0, 1.0, 1.0 }
-       base[NORMAL] = { 0.09, 0.48, 0.46 }
-       base[ACTIVE] = { 0.09, 0.48, 0.46 }
-       bg[NORMAL] = { 1.0, 0.48, 0.46 }
-       bg[ACTIVE] = { 0.09, 1.0, 0.46 }
-}
-/*
-style "menu_bar_base" = "default_base"
-{
-       bg[NORMAL] = { 0.2, 0.2, 0.3 }
-       bg[ACTIVE] = { 0, 0, 0 }
-       bg[PRELIGHT] = { 0, 0, 0 }
-       bg[INSENSITIVE] = { 0, 0, 0 }
-       bg[SELECTED] = { 0, 0, 0 }
-}
-*/
-style "fatal_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 1.0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "error_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "info_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "warning_message" = "medium_text"
-{
-   fg[ACTIVE] = { 0.30,0.30, 1.0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0, 0, 0 }
-   bg[NORMAL] = { 0, 0, 0 }
-   base[ACTIVE] = { 0, 0, 0 }
-   base[NORMAL] = { 0, 0, 0 }
-}
-
-style "medium_entry" = "medium_text"
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-       
-       bg[NORMAL] = { 0.70, 0.70, 0.70 }
-       
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-}
-
-style "medium_entry_noselection_fg" = "medium_entry"
-{
-       fg[SELECTED] = { 0.50, 1.0, 0.50 }
-}
-
-style "medium_entry_noselection_bg" = "medium_entry"
-{
-       bg[SELECTED] = { 1.0, 1.0, 1.0 }
-}
-
-style "medium_bold_entry"  = "medium_bold_text"
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-       
-       bg[NORMAL] = { 0.70, 0.70, 0.70 }
-       
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-}
-
-style "small_entry" = "small_text"
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 1.0, 0 }
-       fg[SELECTED] = { 0, 1.0, 0 }
-       text[NORMAL] = { 0, 0, 0 }
-       text[ACTIVE] = { 0, 1.0, 0 }
-       text[SELECTED] = { 0, 1.0, 0 }
-       bg[NORMAL] = { 0.70, 0.70, 0.70 }
-       bg[SELECTED] = { 0.70, 0.70, 0.70 }
-       bg[SELECTED] = { 0.70, 0.70, 0.70 }
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-}
-
-style "red_active_small_entry" = "small_entry"
-{
-       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-}
-
-style "small_bold_entry" = "small_bold_text"
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-       
-       bg[NORMAL] = { 0.70, 0.70, 0.70 }
-       
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-}
-
-style "small_red_on_black_entry"  = "small_bold_text"
-{
-       fg[NORMAL] = { 1.0, 0, 0 }
-       fg[ACTIVE] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
-}
-
-style "non_recording_big_clock_display" = "medium_entry"
-{
-       font_name = "%FONT_MASSIVE%"
-
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       fg[PRELIGHT] = { 1.0, 0, 0.0 }
-       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
-       
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.7, 0.0, 0.0 }  
-}
-
-style "recording_big_clock_display" = "non_recording_big_clock_display"
-{
-       fg[NORMAL] = { 1.0, 0, 0 }
-}
-
-style "transport_clock_display"
-{
-       font_name = "%FONT_BOLD_BIGGER%"
-       
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       fg[PRELIGHT] = { 1.0, 0, 0.0 }
-       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
-       
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
-}
-
-style "transport_clock_display_delta" = "transport_clock_display"
-{
-       fg[NORMAL] = { 0.30, 0.30, 1.0 }
-}
-
-style "tempo_meter_clock_display"
-{
-       font_name = "%FONT_SMALLER%"
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0.0, 0.48, 1.0 }
-       base[ACTIVE] = { 0.09, 0.98, 0.46 }
-       bg[NORMAL] = { 0.0, 0.48, 1.0 }
-       bg[ACTIVE] = { 0.09, 0.98, 0.46 }
-}
-
-style "default_clock_display" = "medium text"
-{
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       bg[NORMAL] = { 0, 0, 0 }
-       bg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "editor_time_ruler" = "small_text"
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.74, 0.74, 0.77 }
-}
-
-style "audio_bus_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0, 0, 0 }     
-  bg[NORMAL] = { 0.65, 0.65, 0.65 }    
-}
-
-style "audio_track_base" = "default_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0.30, 0.30, 0.35 }    
-  bg[NORMAL] = { 0.70, 0.70, 0.70 }
-  bg[ACTIVE] = { 0.80, 0.80, 0.80 }    
-  bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-  bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-  bg[SELECTED] = { 0.80, 0.80, 0.80 }
-}
-
-style "midi_bus_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
-  #bg[NORMAL] = {0, 0.36, 0.40 }
-  bg[NORMAL] = "#444466"       
-}
-
-style "midi_track_base" = "default_base"
-{
-  font_name = "%FONT_SMALLER%"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  bg[NORMAL] = { 0.48, 0.30, 0.32 }
-  bg[ACTIVE] = { 0.70, 0.70, 0.80 }    
-  bg[PRELIGHT] = { 0.70, 0.70, 0.80 }
-  bg[INSENSITIVE] = { 0.70, 0.70, 0.80 }
-  bg[SELECTED] = { 0.70, 0.70, 0.80 } 
-}
-
-style "track_controls_inactive" 
-{
-       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
-       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
-       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
-       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
-       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
-
-       #font_name = "sans 18"
-       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
-}
-
-style "audio_track_metrics" = "audio_track_base"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "audio_bus_metrics" = "audio_bus_base"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "audio_track_metrics_inactive" = "track_controls_inactive"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "audio_bus_metrics_inactive" = "track_controls_inactive"
-{
-       font_name = "%FONT_TINY%"
-}
-
-style "track_name_display"
-{
-       font_name = "%FONT_NORMAL%"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
-
-       base[NORMAL] = { 0.80, 0.80, 0.80 }
-       base[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
-}
-
-style "active_track_name_display"
-{
-       font_name = "%FONT_NORMAL%"
-       text[NORMAL] = { 0.26, 0.26, 0.26 }
-       base[NORMAL] = { 0.89, 0.89, 0.89 }
-}
-
-style "track_separator"
-{
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-}
-
-#
-# Track edit groups. These styles define
-# the colors that the "edit" button will
-# use as a track is moved from
-# track edit group to track edit group.
-# There are 8 edit groups. Edit group 0
-# is used for tracks that are not editable, 
-# so we leave its style to the default.
-#
-
-style "edit_group_0"
-
-{
-       bg[ACTIVE] = { 1.0, 0.65, 0.13 }
-       bg[NORMAL] = { 0.31, 0.31, 0.31 }
-       fg[NORMAL] = { 0.82, 0.91, 0.99 }
-       fg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "edit_group_1" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "edit_group_2" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "edit_group_3" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "treeview_parent_node"
-{
-       # specifies *just* the color used for whole file rows when not selected
-       fg[NORMAL] = { 0.0, 0.0, 1.0 }
-}
-
-style "treeview_display" = "small_bold_text"
-{
-       # expander arrow border and DnD "icon" text
-       fg[NORMAL] = { 0, 0, 0 } 
-
-       # background with no rows or no selection, plus
-       # expander arrow core and DnD "icon" background
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-
-       # selected row bg when window does not have focus (including during DnD)
-       base[ACTIVE] = { 0.0, 0.60, 0.60 }    
-
-       # selected row bg when window has focus
-       base[SELECTED] = { 0, 0.75, 0.75 }
-
-       # row text when in normal state and not a parent
-       text[NORMAL] = { 0, 0, 0 }
-
-       # selected row text with window focus
-       text[SELECTED] = { 0, 1.0, 1.0 }  
-
-       # selected row text without window focus (including during DnD)
-       text[ACTIVE] = { 0, 1.0, 1.0 }  
-}
-
-style "main_canvas_area"
-{
-       bg[NORMAL] = { 0.40, 0.40, 0.40 }
-       bg[ACTIVE] = { 0.40, 0.40, 0.40 }
-       bg[INSENSITIVE] = { 0.40, 0.40, 0.40 }
-       bg[SELECTED] = { 0.40, 0.40, 0.40 }
-       bg[PRELIGHT] = { 0.40, 0.40, 0.40 }
-}
-
-style "track_controls_inactive"
-{
-       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
-       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
-       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
-       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
-       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
-
-       font_name = "%FONT_LARGE%"
-       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
-}
-
-style "edit_controls_base_selected"
-{
-       bg[NORMAL] = { 0.60, 0.54, 0.60 }
-       bg[ACTIVE] = { 0.60, 0.54, 0.60 }
-       bg[INSENSITIVE] = { 0.60, 0.54, 0.60 }
-       bg[SELECTED] = { 0.60, 0.54, 0.60 }
-       bg[PRELIGHT] = { 0.60, 0.54, 0.60 }
-}
-
-style "automation_track_controls_base"
-{
-       bg[NORMAL] = { 0.22, 0.22, 0.29 }
-       bg[ACTIVE] = { 0.22, 0.22, 0.29 }
-       bg[INSENSITIVE] = { 0.22, 0.22, 0.29 }
-       bg[SELECTED] = { 0.22, 0.22, 0.29 }
-       bg[PRELIGHT] = { 0.22, 0.22, 0.29 }
-}
-
-# Plugin Editors
-style "plugin_slider" 
-{
-       font_name ="%FONT_BOLD_BIG%"
-
-       # the slider itself. the inactive part is INSENSITIVE,
-       # the active part is something else.
-
-       fg[NORMAL] = { 0.37, 0.43, 0.52 }
-       fg[ACTIVE] = { 0.37, 0.43, 0.52 }
-       fg[INSENSITIVE] = {0.35, 0.35, 0.40 } # matches default_base
-       fg[SELECTED] = { 0.37, 0.43, 0.52 }
-       fg[PRELIGHT] = { 0.37, 0.43, 0.52 }
-
-       # draws the outer rectangle around the slider
-
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[INSENSITIVE] = {0.80, 0.80, 0.80 }
-       bg[SELECTED] = { 0.80, 0.80, 0.80 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-
-       # the numeric display
-
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.80, 0.80, 0.80 }
-       text[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       text[SELECTED] = { 0.80, 0.80, 0.80 }
-       text[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "track_list_display" = "small_bold_text"
-{
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.3, 0.3, 0.3 }
-       text[INSENSITIVE] = { 0, 0, 0 }
-       text[SELECTED] = { 0.8, 0.8, 0.8 }
-
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.70, 0.70, 0.70 }
-       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-}
-
-style "inspector_track_list_display" = "track_list_display"
-{
-       text[ACTIVE] = { 0.8, 0.8, 0.8 }
-
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.2, 0.2, 0.2 }
-       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.3, 0.3, 0.4 }
-}
-
-style "redirect_list_display"
-{
-       GtkTreeView::horizontal-separator = 0
-       GtkTreeView::vertical-separator = 0
-
-       font_name = "%FONT_SMALL%"
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.70, 0.70, 0.70 }
-       text[INSENSITIVE] = { 0, 0, 0 }
-       text[SELECTED] = { 0.9, 0.3, 0.3 }
-
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.70, 0.70, 0.70 }
-       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-
-       # these two are explicitly used by the cell renderer for the
-        # text
-
-       fg[NORMAL] = { 0.5, 0.5, 0.5 }  # used for inactive
-       fg[ACTIVE] = { 0, 0, 0 }  # used for active
-}
-
-style "inspector_redirect_list_display" = "redirect_list_display"
-{
-       base[SELECTED] = { 0.3, 0.3, 0.3 }
-}
-
-# MixerPanZone:
-#
-# the NORMAL fg color is used for the pan puck
-# the ACTIVE fg color is used for the speaker boxes
-
-style "pan_zone" = "default_base"
-{
-       fg[NORMAL] = { 0.34, 0.95, 0.92 }
-       fg[ACTIVE] = { 0.95, 0.48, 0.11 }
-}
-
-style "paler_red_when_active" = "medium_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.31, 0.31, 0.31 }
-       bg[PRELIGHT] = { 0.31, 0.31, 0.31 }
-
-       fg[ACTIVE] = { 0.36, 0.46, 0.28 }
-       bg[ACTIVE] = { 1.00, 0.59, 0.59}
-}
-
-style "peak_display_peaked_entry" = "small_text"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-
-       bg[NORMAL] = {0.9, 0.0, 0.0 }   
-       bg[ACTIVE] = { 0.9, 0.0, 0.0 }  
-       bg[PRELIGHT] = { 0.9, 0.0, 0.0 }        
-       bg[INSENSITIVE] = { 0.9, 0.0, 0.0 }     
-       bg[SELECTED] = { 0.9, 0.0, 0.0 }        
-       base[NORMAL] = { 0.9, 0.0, 0.0 }        
-       base[ACTIVE] = { 0.9, 0.0, 0.0 }        
-       base[PRELIGHT] = { 0.9, 0.0, 0.0 }      
-       base[INSENSITIVE] = { 0.9, 0.0, 0.0 }   
-       base[SELECTED] = { 0.9, 0.0, 0.0 }      
-}
-
-style "selected_strip_frame"
-{
-       fg[NORMAL] = { 0.74, 0.42, 0.47 }
-       bg[NORMAL] = { 0.79, 0.28, 0.18 }
-}
-
-style "flashing_alert" = "very_small_text"
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-}
-
-style "selected_io_selector_port_list" = "medium_bold_text"
-{
-
-       GtkTreeView::even-row-color = { 0.70, 0.70, 0.70 }
-       GtkTreeView::odd-row-color = { 0.70, 0.70, 0.70 }
-
-# fg is used to color the fg (text) of the column header button
-
-       fg[NORMAL] = { 0.30, 0.30, 0.35 }
-       fg[SELECTED] = { 0.30, 0.30, 0.35 }
-       fg[ACTIVE] = { 0.30, 0.30, 0.35 }
-       fg[PRELIGHT] = { 0.30, 0.30, 0.35 }
-       fg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
-
-# bg is used used to color the background of the column header button
-
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       bg[SELECTED] = { 0.80, 0.80, 0.80 }
-
-# text is used to color the treeview row text
-
-       text[NORMAL] = { 0.30, 0.30, 0.35 }
-       text[SELECTED] = { 0.30, 0.30, 0.35 }
-
-# base is used to color a treeview with no rows
-
-       base[NORMAL] = { 0.70, 0.70, 0.70 }
-       base[ACTIVE] = { 0.70, 0.70, 0.70 }
-       base[PRELIGHT] = { 0.70, 0.70, 0.70 }
-       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-
-}
-
-style "io_selector_port_list" = "medium_text"
-{
-       GtkTreeView::even-row-color = { 0.70, 0.70, 0.70 }
-       GtkTreeView::odd-row-color = { 0.70, 0.70, 0.70 }
-# fg is used to color the fg (text) of the column header button
-
-       fg[NORMAL] = { 0.30, 0.30, 0.35 }
-       fg[SELECTED] = { 0.30, 0.30, 0.35 }
-       fg[ACTIVE] = { 0.30, 0.30, 0.35 }
-       fg[PRELIGHT] = { 0.30, 0.30, 0.35 }
-       fg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
-
-# bg is used used to color the background of the column header button
-
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       bg[SELECTED] = { 0.80, 0.80, 0.80 }
-
-# text is used to color the treeview row text
-
-       text[NORMAL] = { 0.30, 0.30, 0.35 }
-       text[SELECTED] = { 0.30, 0.30, 0.35 }
-
-# base is used to color a treeview with no rows
-
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-       base[ACTIVE] = { 0.20, 0.20, 0.25 }
-       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
-       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
-       base[SELECTED] = { 0.20, 0.20, 0.25 }
-}
-
-style "io_selector_notebook" = "default_base"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-        font_name ="%FONT_BOLD_NORMAL%"
-}
-
-style "tearoff_arrow" = "medium_bold_entry"
-{
-       fg[NORMAL] = { 0.30, 0.30, 0.30 }
-       fg[PRELIGHT] = { 0.30, 0.30, 0.30 }
-       bg[NORMAL] = { 0.30, 0.30, 0.30 }
-       bg[PRELIGHT] = { 0.30, 0.30, 0.30 }
-}
-
-style "location_row_button" = "default_buttons_menus"
-{
-       font_name = "%FONT_SMALL%"
-}
-
-style "location_rows_clock" = "default_clock_display"
-{
-       font_name = "%FONT_BIG%"
-}
-
-style "pan_slider" 
-{
-       font_name = "%FONT_NORMAL%"
-
-       fg[NORMAL] = { 0.22, 0.73, 0.22 }
-       fg[ACTIVE] = { 0.22, 0.73, 0.22 }
-       fg[INSENSITIVE] = {0.22, 0.53, 0.22 } 
-       fg[SELECTED] = { 0.67, 0.23, 0.22 }
-       fg[PRELIGHT] = { 0.67, 0.23, 0.22 }
-
-       bg[NORMAL] = { 0.05, 0.05, 0.05 }
-       bg[ACTIVE] = { 0, 0, 0 }
-       bg[INSENSITIVE] = {0.12, 0.19, 0.25 } 
-       bg[SELECTED] = { 0, 0, 0 }
-       bg[PRELIGHT] = { 0, 0, 0 }
-
-       text[NORMAL] = { 0.70, 0.70, 0.70 }
-       text[ACTIVE] = { 0.70, 0.70, 0.70 }
-       text[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-       text[SELECTED] = { 0.70, 0.70, 0.70 }
-       text[PRELIGHT] = { 0.70, 0.70, 0.70 }
-
-       # used to draw the triangular indicators 
-
-       base[NORMAL] = { 0.80, 0.80, 0.80 }
-       base[ACTIVE] =  { 0.80, 0.80, 0.80 }
-       base[INSENSITIVE] = {0.6, 0.6, 0.6 }
-       base[SELECTED] = { 0.80, 0.80, 0.80 }
-       base[PRELIGHT] = { 0.80, 0.80, 0.80 }
-
-}
-
-style "ardour_button" ="default_buttons_menus"
-{
-       xthickness = 1
-       ythickness = 1
-}
-
-#---------------------------------------------------------------
-
-class "GtkWidget" style:highest "default_base"
-class "GtkScrollbar" style:highest "ardour_adjusters"
-class "GtkLabel" style:highest "default_buttons_menus"
-class "GtkButton" style:highest "ardour_button"
-class "GtkArrow" style:highest "tearoff_arrow"
-class "GtkProgressBar" style:highest "ardour_progressbars"
-
-widget "*FirstActionMessage" style:highest "first_action_message"
-widget "*VerboseCanvasCursor" style:highest "verbose_canvas_cursor"
-widget "*MarkerText" style:highest "marker_text"
-widget "*TimeAxisViewItemName*" style:highest "time_axis_view_item_name"
-#widget "*ExportProgress" style:highest "default_buttons_menus"
-widget "*ExportFileLabel" style:highest "small_bold_text"
-widget "*ExportFormatLabel" style:highest "medium_bold_text"
-widget "*ExportHeader" style:highest "small_bold_text"
-widget "*ExportFileDisplay" style:highest "medium_entry"
-widget "*ExportFormatDisplay" style:highest "medium_entry"
-widget "*ExportCheckbox" style:highest "small_entry"
-widget "*ExportTrackSelector*" style:highest "medium_entry_noselection_bg"
-widget "*EditModeSelector" style:highest "medium_bold_entry"
-widget "*SnapTypeSelector" style:highest "medium_bold_entry"
-widget "*SnapModeSelector" style:highest "medium_bold_entry"
-widget "*ZoomFocusSelector" style:highest "medium_bold_entry"
-widget "*ArdourContextMenu*" style:highest "default_buttons_menus"
-widget "*EditGroupTitleButton*" style:highest "default_buttons_menus"
-widget "*MixerGroupTitleButton*" style:highest "default_buttons_menus"
-widget "*ErrorLogCloseButton" style:highest "default_buttons_menus"
-widget "*EditorGTKButton*" style:highest "default_buttons_menus" 
-widget "*ToolbarButton" style:highest "default_buttons_menus"
-widget "*ToolbarButton*" style:highest "default_buttons_menus"
-widget "*CrossfadeEditButton" style:highest "default_buttons_menus"
-widget "*CrossfadeEditButton*" style:highest "default_buttons_menus"
-widget "*TrackHistoryButton*" style:highest "default_buttons_menus"
-widget "*TrackSizeButton*" style:highest "default_buttons_menus"
-widget "*TrackPlaylistButton*" style:highest "default_buttons_menus"
-widget "*TrackAutomationButton*" style:highest "default_buttons_menus"
-widget "*TrackGroupButton*" style:highest "default_buttons_menus"
-widget "*TrackMixButton*" style:highest "default_buttons_menus"
-widget "*TrackVisualButton*" style:highest "default_buttons_menus"
-widget "*TrackRemoveButton*" style:highest "default_buttons_menus"
-widget "*BaseButton" style:highest "default_buttons_menus"
-widget "*TakeButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerWidthButton" style:highest "default_buttons_menus"
-widget "*MixerHideButton" style:highest "default_buttons_menus"
-widget "*MixerSendButton" style:highest "default_buttons_menus"
-widget "*MixerSendButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerSendSwitch" style:highest "default_buttons_menus"
-widget "*MixerInsertButton" style:highest "default_buttons_menus"
-widget "*MixerInsertButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerInsertSwitch" style:highest "default_buttons_menus"
-widget "*MixerMonitorInputButton*" style:highest "very_small_button"
-widget "*MixerMonitorInputButton.*" style:highest "very_small_button"
-widget "*MixerIOButton" style:highest "very_small_button"
-widget "*MixerIOButtonLabel" style:highest "very_small_button"
-widget "*AddRouteDialogSpinner" style:highest "ardour_adjusters"
-widget "*AddRouteDialogRadioButton*" style:highest "preferences"
-widget "*OptionsNotebook" style:highest "preferences"
-widget "*OptionEditorToggleButton*" style:highest "preferences"
-widget "*OptionsLabel" style:highest "preferences"
-widget "*OptionEditorAuditionerLabel" style:highest "preferences"
-widget "*OptionsEntry" style:highest "option_entry"
-widget "*InspectorNotebook" style:highest "preferences"
-widget "*NewSessionDialog" style:highest "preferences"
-widget "*NewSessionDialogButton*" style:highest "preferences"
-widget "*MixerSendSwitch*" style:highest "very_small_red_active_and_selected_button"
-widget "*OptionEditorToggleButton" style:highest "small_red_active_and_selected_button"
-widget "*NewSessionDialogButton" style:highest "small_red_active_and_selected_button"
-widget "*RecordEnableButton" style:highest "track_rec_enable_button"
-widget "*RecordEnableButton-active" style:highest "track_rec_enable_button_active"
-widget "*RecordEnableButton-alternate" style:highest "track_rec_enable_button_alternate"
-widget "*MixerRecordEnableButton" style:highest "mixer_track_rec_enable_button"
-widget "*MixerRecordEnableButton-active" style:highest "mixer_track_rec_enable_button_active"
-widget "*MixerRecordEnableButton-alternate" style:highest "mixer_track_rec_enable_button_alternate"
-widget "*MuteButton" style:highest "mute_button"
-widget "*MuteButton-alternate" style:highest "mute_button_alternate"
-widget "*MuteButton-active" style:highest "mute_button_active"
-widget "*MixerMuteButton" style:highest "mixer_mute_button"
-widget "*MixerMuteButton-alternate" style:highest "mixer_mute_button_alternate"
-widget "*MixerMuteButton-active" style:highest "mixer_mute_button_active"
-widget "*SoloButton" style:highest "solo_button"
-widget "*SoloButton-alternate" style:highest "solo_button_alternate"
-widget "*SoloButton-active" style:highest "solo_button_active"
-widget "*MixerSoloButton" style:highest "mixer_solo_button"
-widget "*MixerSoloButton-alternate" style:highest "mixer_solo_button_alternate"
-widget "*MixerSoloButton-active" style:highest "mixer_solo_button_active"
-widget "*TrackLoopButton*" style:highest "track_loop_button"
-widget "*PanAutomationLineSelector*" style:highest "multiline_combo"
-widget "*EditorTimeButton*" style:highest "time_button"
-widget "*MixerPhaseInvertButton*" style:highest "very_small_button"
-widget "*MixerPhaseInvertButton.*" style:highest "very_small_button"
-widget "*MixerAutomationRecordingButton*" style:highest "very_small_button"
-widget "*MixerAutomationRecordingButton.*" style:highest "very_small_button"
-widget "*MixerAutomationModeButton*" style:highest "very_small_button"
-widget "*MixerAutomationModeButton.*" style:highest "very_small_button"
-widget "*MixerAutomationPlaybackButton*" style:highest "very_small_button"
-widget "*MixerAutomationPlaybackButton.*" style:highest "very_small_button"
-widget "*MixerNameButton" style:highest "very_small_button"
-widget "*MixerNameButtonLabel" style:highest "very_small_button"
-widget "*MixerGroupButton" style:highest "very_small_button"
-widget "*MixerGroupButtonLabel" style:highest "very_small_button"
-widget "*MixerCommentButton" style:highest "very_small_button"
-widget "*MixerCommentButton*" style:highest "very_small_button"
-widget "*EditGroupButton" style:highest "very_small_button"
-widget "*EditGroupButtonLabel" style:highest "very_small_button"
-widget "*TransportButton" style:highest "transport_rec_button"
-widget "*TransportButton-active" style:highest "transport_button_active"
-widget "*ShuttleButton" style:highest "transport_button"
-widget "*ShuttleButton*" style:highest "transport_button"
-widget "*ShuttleDisplay" style:highest "transport_button"
-widget "*ShuttleDisplay*" style:highest "transport_button"
-widget "*ShuttleControl" style:highest "shuttle_control"
-widget "*TransportRecButton" style:highest "transport_rec_button"
-widget "*TransportRecButton*" style:highest "transport_rec_button"
-widget "*TransportRecButton-active" style:highest "transport_rec_button_active"
-widget "*TransportRecButton-active*" style:highest "transport_rec_button_active"
-widget "*TransportRecButton-alternate" style:highest "transport_rec_button_alternate"
-widget "*TransportRecButton-alternate*" style:highest "transport_rec_button_alternate"
-widget "*TransportRecButton*" style:highest "transport_rec_button"
-widget "*RecordingXrunWarningWindow" style:highest "xrun_warn"
-widget "*RecordingXrunWarningWindow*" style:highest "xrun_warn"
-/*widget "*MainMenuBar" style:highest "menu_bar_base"*/
-widget "*ErrorMessage" style:highest "error_message"
-widget "*FatalMessage" style:highest "fatal_message"
-widget "*InfoMessage" style:highest "info_message"
-widget "*WarningMessage" style:highest "warning_message"
-widget "*BigClockNonRecording" style:highest "non_recording_big_clock_display"
-widget "*BigClockRecording" style:highest "recording_big_clock_display"
-widget "*TransportClockDisplay" style:highest "transport_clock_display"
-widget "*SecondaryClockDisplay" style:highest "transport_clock_display"
-widget "*TransportClockDisplayDelta" style:highest "transport_clock_display_delta"
-widget "*SecondaryClockDisplayDelta" style:highest "transport_clock_display_delta"
-widget "*AudioClockFramesUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockFramesLowerInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockSMPTEUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockSMPTELowerInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockBBTUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockBBTLowerInfo" style:highest "tempo_meter_clock_display"
-widget "*SelectionStartClock" style:highest "default_clock_display"
-widget "*SelectionEndClock" style:highest "default_clock_display"
-widget "*EditPointClock" style:highest "default_clock_display"
-widget "*PreRollClock" style:highest "default_clock_display"
-widget "*PostRollClock" style:highest "default_clock_display"
-widget "*NudgeClock" style:highest "default_clock_display"
-widget "*ZoomRangeClock" style:highest "default_clock_display"
-widget "*SMPTEOffsetClock" style:highest "default_clock_display"
-widget "*TransportLabel" style:highest "small_bold_text"
-widget "*TakeLabel" style:highest "small_bold_text"
-widget "*LocationLabel" style:highest "small_bold_text"
-widget "*WipeLabel" style:highest "small_bold_text"
-widget "*TakeTagLabel" style:highest "small_bold_text"
-widget "*ToolBarLabel" style:highest "small_bold_text"
-widget "*EditorDisplayLabel" style:highest "small_bold_text"
-widget "*NewSessionLabel" style:highest "large_text"
-widget "*GlobalButtonLabel" style:highest "default_buttons_menus"
-widget "*ClickButton" style:highest "medium_entry"
-widget "*RegionNameDisplay" style:highest "medium_entry"
-widget "*PluginDisplay" style:highest "medium_entry"
-widget "*SelectionDisplay" style:highest "medium_entry"
-widget "*HistorySelector" style:highest "medium_entry"
-widget "*LocationSelector" style:highest "medium_entry"
-widget "*TakeSelector" style:highest "medium_entry"
-widget "*RegionSelector" style:highest "medium_entry"
-widget "*SMPTERuler" style:highest "editor_time_ruler"
-widget "*BBTRuler" style:highest "editor_time_ruler"
-widget "*FramesRuler" style:highest "editor_time_ruler"
-widget "*MinSecRuler" style:highest "editor_time_ruler"
-widget "*BaseFrame" style:highest "base_frame"
-
-widget "*AudioTrackStripBase" style:highest "audio_track_base"
-widget "*AudioBusStripBase" style:highest "audio_bus_base"
-widget "*MidiTrackStripBase" style:highest "midi_track_base"
-widget "*AudioTrackStripBaseInactive" style:highest "track_controls_inactive"
-widget "*AudioBusStripBaseInactive" style:highest "track_controls_inactive"
-widget "*MidiTrackStripBaseInactive" style:highest "track_controls_inactive"
-widget "*FaderMetricsStrip" style:highest "audio_track_metrics"
-widget "*AudioTrackMetrics" style:highest "audio_track_metrics"
-widget "*AudioBusMetrics" style:highest "audio_bus_metrics"
-widget "*AudioTrackMetricsInactive" style:highest "audio_track_metrics_inactive"
-widget "*AudioBusMetricsInactive" style:highest "audio_bus_metrics_inactive"
-
-widget "*TimeAxisViewControlsBaseUnselected" style:highest "audio_track_base"
-widget "*AudioTrackControlsBaseUnselected" style:highest "audio_track_base"
-widget "*MidiTrackControlsBaseUnselected" style:highest "midi_track_base"
-widget "*AudioTrackFader" style:highest "gain_fader"
-
-widget "*BusControlsBaseUnselected" style:highest "audio_bus_base"
-widget "*AudioBusFader" style:highest "gain_fader"
-widget "*TrackSeparator" style:highest "track_separator"
-widget "*TrackEditIndicator0*" style:highest "edit_group_0"
-widget "*TrackEditIndicator1*" style:highest "edit_group_1"
-widget "*TrackEditIndicator2*" style:highest "edit_group_2"
-widget "*TrackEditIndicator3*" style:highest "edit_group_3"
-widget "*TrackEditIndicator4*" style:highest "edit_group_3"
-widget "*TrackEditIndicator5*" style:highest "edit_group_3"
-widget "*TrackEditIndicator6*" style:highest "edit_group_3"
-widget "*TrackEditIndicator7*" style:highest "edit_group_3"
-widget "*EditorTrackNameDisplay" style:highest "track_name_display"
-widget "*EditorTrackNameDisplay*" style:highest "track_name_display"
-widget "*EditorActiveTrackNameDisplay" style:highest "active_track_name_display"
-widget "*EditorActiveTrackNameDisplay*" style:highest "active_track_name_display"
-widget "*CrossfadeEditAuditionButton" style:highest "red_when_active"
-widget "*CrossfadeEditAuditionButton*" style:highest "red_when_active"
-widget "*CrossfadeEditCurveButton" style:highest "red_when_active"
-widget "*CrossfadeEditCurveButton*" style:highest "red_when_active"
-widget "*CrossfadeEditLabel" style:highest "medium_text"
-widget "*CrossfadeEditFrame" style:highest "base_frame"
-widget "*MouseModeButton" style:highest "default_buttons_menus"
-widget "*MouseModeButton*" style:highest "default_buttons_menus"
-widget "*EditorMainCanvas" style:highest "main_canvas_area"
-widget "*AudioTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*BusControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*AutomationTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*AutomationTrackName" style:highest "automation_track_name"
-widget "*AudioTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*BusControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*AutomationTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*AudioTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*MidiTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*BusControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*AutomationTrackControlsBase" style:highest "automation_track_controls_base"
-widget "*AutomationTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-/*widget "*EditorMenuBar*" style:highest "black_mackie_menu_bar"
-widget "*MainMenuBar*" style:highest "black_mackie_menu_bar"
-*/
-widget "*ZoomClickBox" style:highest "medium_bold_entry"
-widget "*PluginParameterLabel" style:highest "medium_text"
-widget "*PluginNameInfo" style:highest "plugin_name_text"
-widget "*PluginMakerInfo" style:highest "plugin_maker_text"
-widget "*PluginParameterInfo" style:highest "medium_text"
-widget "*MotionControllerValue" style:highest "medium_entry"
-widget "*ParameterValueDisplay" style:highest "medium_bold_entry"
-widget "*PluginUIClickBox" style:highest "medium_bold_entry"
-widget "*PluginUIClickBox*" style:highest "medium_bold_entry"
-widget "*PluginSlider" style:highest "plugin_slider"
-widget "*RedirectSelector" style:highest "redirect_list_display"
-widget "*RedirectSelector.*" style:highest "redirect_list_display"
-widget "*EditGroupDisplay" style:highest "treeview_display"
-widget "*TrackListDisplay" style:highest "treeview_display"
-widget "*RegionListDisplay" style:highest "treeview_display"
-widget "*NamedSelectionDisplay" style:highest "treeview_display"
-widget "*SnapshotDisplay" style:highest "treeview_display"
-widget "*MixerTrackCommentArea" style:highest "option_entry"
-widget "*MixerPanZone" style:highest "pan_zone"
-widget "*MixerTrackDisplayList" style:highest "treeview_display"
-widget "*MixerSnapshotDisplayList" style:highest "treeview_display"
-widget "*MixerAuxDisplayList" style:highest "treeview_display"
-widget "*MixerGroupList" style:highest "treeview_display"
-widget "*RegionEditorLabel" style:highest "medium_text"
-widget "*RegionEditorSmallLabel" style:highest "small_text"
-widget "*RegionEditorEntry" style:highest "medium_entry"
-widget "*RegionEditorClock" style:highest "default_clock_display"
-widget "*RegionEditorToggleButton" style:highest "paler_red_when_active"
-widget "*RegionEditorToggleButton*" style:highest "paler_red_when_active"
-widget "*MixerStripSpeedBase" style:highest "small_entry"
-widget "*MixerStripSpeedBase*" style:highest "small_entry"
-widget "*MixerStripSpeedBaseNotOne" style:highest "small_red_on_black_entry"
-widget "*MixerStripSpeedBaseNotOne*" style:highest "small_red_on_black_entry"
-widget "*MixerStripGainDisplay" style:highest "small_entry"
-widget "*MixerStripGainDisplay*" style:highest "small_entry"
-widget "*MixerStripGainUnitButton" style:highest "very_small_button"
-widget "*MixerStripGainUnitButton*" style:highest "very_small_button"
-widget "*MixerStripMeterPreButton" style:highest "very_small_button"
-widget "*MixerStripMeterPreButton*" style:highest "very_small_button"
-widget "*MixerStripPeakDisplay*" style:highest "red_active_small_entry"
-widget "*MixerStripPeakDisplayPeak*" style:highest "peak_display_peaked_entry"
-widget "*MixerStripSelectedFrame" style:highest "selected_strip_frame"
-widget "*MixerStripFrame" style:highest "base_frame"
-widget "*HWMonitorButton" style:highest "red_when_active"
-widget "*HWMonitorButton*" style:highest "red_when_active"
-widget "*BypassButton" style:highest "red_when_active"
-widget "*BypassButton*" style:highest "red_when_active"
-widget "*TransportSoloAlert" style:highest "flashing_alert"
-widget "*TransportSoloAlert.*" style:highest "flashing_alert"
-widget "*TransportAuditioningAlert" style:highest "flashing_alert"
-widget "*TransportAuditioningAlert.*" style:highest "flashing_alert"
-widget "*FadeCurve" style:highest "medium_bold_entry"
-widget "*FadeCurve*" style:highest "medium_bold_entry"
-widget "*IOSelectorButton" style:highest "default_buttons_menus"
-widget "*IOSelectorButton*" style:highest "default_buttons_menus"
-widget "*IOSelectorList" style:highest "medium_entry_noselection_fg"
-widget "*IOSelectorPortList" style:highest "io_selector_port_list"
-widget "*IOSelectorPortList.*" style:highest "io_selector_port_list"
-widget "*IOSelectorPortListSelected" style:highest "selected_io_selector_port_list"
-widget "*IOSelectorPortListSelected.*" style:highest "selected_io_selector_port_list"
-widget "*IOSelectorNotebook" style:highest "io_selector_notebook"
-widget "*IOSelectorNotebookTab" style:highest "io_selector_notebook"
-widget "*IOSelectorFrame" style:highest "base_frame"
-widget "*ConnectionEditorButton" style:highest "default_buttons_menus"
-widget "*ConnectionEditorButton*" style:highest "default_buttons_menus"
-widget "*ConnectionEditorList" style:highest "medium_entry_noselection_fg"
-widget "*ConnectionEditorConnectionList" style:highest "medium_entry"
-widget "*ConnectionEditorPortList" style:highest "io_selector_port_list"
-widget "*ConnectionEditorPortListSelected" style:highest "selected_io_selector_port_list"
-widget "*ConnectionEditorNotebook" style:highest "io_selector_notebook"
-widget "*ConnectionEditorNotebookTab" style:highest "io_selector_notebook"
-widget "*ConnectionEditorFrame" style:highest "base_frame"
-widget "*RouteParamsListDisplay" style:highest "inspector_track_list_display"
-widget "*RouteParamsPreListDisplay" style:highest "inspector_redirect_list_display"
-widget "*RouteParamsPostListDisplay" style:highest "inspector_redirect_list_display"
-widget "*TearOffArrow" style:highest "tearoff_arrow"
-widget "*RouteParamsTitleButton" style:highest "medium_text"
-widget "*RouteParamsTitleLabel" style:highest "medium_text"
-widget "*PluginAutomateRecordButton" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomateRecordButton*" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomatePlayButton" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomatePlayButton*" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomateButton" style:highest "small_button"
-widget "*PluginAutomateButton*" style:highest "small_button"
-widget "*PluginSaveButton" style:highest "small_button"
-widget "*PluginSaveButton*" style:highest "small_button"
-widget "*PluginLoadButton" style:highest "small_button"
-widget "*PluginLoadButton*" style:highest "small_button"
-
-widget "*MetricDialogFrame" style:highest "base_frame"
-widget "*MetricEntry" style:highest "medium_bold_entry"
-widget "*MetricButton" style:highest "default_buttons_menus"
-widget "*MetricButton.*" style:highest "default_buttons_menus"
-widget "*MetricLabel" style:highest "medium_text"
-widget "*TimeStretchButton" style:highest "default_buttons_menus"
-widget "*TimeStretchButton.*" style:highest "default_buttons_menus"
-widget "*TimeStretchProgress" style:highest "default_buttons_menus"
-widget "*ChoiceWindow" style:highest "default_buttons_menus"
-widget "*ChoicePrompt" style:highest "default_buttons_menus"
-widget "*ChoiceButton" style:highest "default_buttons_menus"
-widget "*ChoiceButton*" style:highest "default_buttons_menus"
-widget "*SelectionModeButton" style:highest "default_buttons_menus"
-widget "*SelectionModeButton*" style:highest "default_buttons_menus"
-widget "*TrackLabel" style:highest "medium_text"
-widget "*TrackPlugName" style:highest "medium_text"
-widget "*TrackParameterName" style:highest "small_text"
-widget "*AddRouteDialog*" style:highest "medium_text"
-widget "*AddRouteDialog.GtkLabel" style:highest "medium_text"
-widget "*AddRouteDialogChannelChoice" style:highest "medium_bold_entry"
-widget "*AddRouteDialogSpinner" style:highest "medium_bold_entry"
-widget "*AddRouteDialogSpinner*" style:highest "medium_bold_entry"
-widget "*AddRouteDialogRadioButton" style:highest "red_when_active"
-widget "*AddRouteDialogButton" style:highest "default_buttons_menus"
-widget "*AddRouteDialogNameTemplateEntry" style:highest "medium_bold_entry"
-widget "*NewSessionIOLabel" style:highest "larger_bold_text"
-widget "*NewSessionSR1Label" style:highest "red_medium_text"
-widget "*NewSessionSR2Label" style:highest "medium_text"
-widget "*NewSessionChannelChoice" style:highest "medium_bold_entry"
-widget "*NewSessionMainButton" style:highest "larger_bold_text"
-widget "*NewSessionMainButton*" style:highest "larger_bold_text"
-widget "*NewSessionMainLabel" style:highest "larger_bold_text"
-widget "*LocationEditRowClock" style:highest "location_rows_clock"
-widget "*LocationEditNameLabel" style:highest "medium_text"
-widget "*LocationEditSetButton" style:highest "location_row_button"
-widget "*LocationEditSetButton*" style:highest "location_row_button"
-widget "*LocationEditGoButton" style:highest "location_row_button"
-widget "*LocationEditGoButton*" style:highest "location_row_button"
-widget "*LocationEditCdButton" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditCdButton*" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditHideButton" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditHideButton*" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditNumberLabel" style:highest "small_text"
-widget "*LocationLocEditorFrame" style:highest "base_frame"
-widget "*LocationRangeEditorFrame" style:highest "base_frame"
-widget "*LocationEditNameEntry" style:highest "option_entry"
-widget "*LocationAddLocationButton" style:highest "default_buttons_menus"
-widget "*LocationAddLocationButton*" style:highest "default_buttons_menus"
-widget "*LocationAddRangeButton" style:highest "default_buttons_menus"
-widget "*LocationAddRangeButton*" style:highest "default_buttons_menus"
-widget "*LocationEditRemoveButton" style:highest "location_row_button"
-widget "*LocationEditRemoveButton*" style:highest "location_row_button"
-widget "*PanSlider" style:highest "pan_slider"
-widget "*PanningLinkButton" style:highest "mixer_red_active_button"
-widget "*PanningLinkButton.*" style:highest "mixer_red_active_button"
-widget "*PanningLinkDirectionButton" style:highest "very_small_button"
-widget "*PanningLinkDirectionButton.*" style:highest "very_small_button"
-widget "*ChannelCountSelector" style:highest "medium_bold_entry"
-widget "*ChannelCountSelector.GtkArrow" style:highest "default_buttons_menus"
-widget "*RegionListWholeFile" style:highest "treeview_parent_node"
-widget "*EditorHScrollbar" style:highest "editor_hscrollbar"
-
diff --git a/gtk2_ardour/ardour3_ui_dark.rc.in b/gtk2_ardour/ardour3_ui_dark.rc.in
new file mode 100644 (file)
index 0000000..b2b5edd
--- /dev/null
@@ -0,0 +1,1557 @@
+#
+# This is the GTK style file for Ardour
+#
+
+style "very_small_text"
+{
+       font_name = "%FONT_SMALLER%"
+}
+
+style "small_text"
+{
+       font_name = "%FONT_SMALL%"
+}
+
+style "small_bold_text"
+{
+       font_name = "%FONT_BOLD_SMALL%"
+}
+
+style "medium_bold_text"
+{
+       font_name = "%FONT_BOLD_NORMAL%"
+}
+
+style "medium_text"
+{
+       font_name = "%FONT_NORMAL%"
+}
+
+style "red_medium_text" = "medium_text"
+{      
+       fg[NORMAL] = { 1.0, 0, 0 }
+       fg[ACTIVE] = { 1.0, 0, 0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+}
+
+style "large_text"
+{
+       font_name = "%FONT_LARGE%"
+}
+
+style "larger_bold_text"
+{
+       font_name = "%FONT_BOLD_BIGGER%"
+}
+
+style "plugin_name_text"
+{
+       font_name = "%FONT_BOLD_LARGER%"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+}
+
+style "plugin_maker_text"
+{
+       font_name = "%FONT_BOLD_BIGGER%"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+}
+
+style "automation_track_name"
+{
+       font_name = "%FONT_ITALIC_NORMAL%"
+}
+
+style "first_action_message" 
+{
+       font_name = "%FONT_HUGER%"
+}
+
+style "verbose_canvas_cursor"
+{
+       font_name = "%FONT_BOLD_LARGER%"
+}
+
+style "marker_text" 
+{
+       font_name = "%FONT_SMALL%"
+}
+
+style "time_axis_view_item_name"
+{
+       font_name = "%FONT_SMALLER%"
+}
+
+style "default_base" = "medium_text"
+{
+  
+  GtkWidget::cursor_color =  {1.0, 1.0, 1.0 }
+  GtkButton::default_border = { 0, 0, 0, 0 }
+  GtkButton::default_outside_border = { 0, 0, 0, 0 }
+  GtkButton::button_relief = GTK_RELIEF_NONE
+  GtkTreeView::vertical-padding = 0
+  GtkTreeView::horizontal-padding = 0
+  GtkTreeView::even-row-color = { 0, 0, 0 }
+  GtkTreeView::odd-row-color = {  0.10, 0.10, 0.15 }
+  
+  fg[NORMAL] = { 0.80, 0.80, 0.80 }    
+  fg[ACTIVE] = { 0.80, 0.80, 0.80 }    
+  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
+  fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }       
+  fg[SELECTED] = { 0.80, 0.80, 0.80 }  
+  
+  bg[NORMAL] = { 0.35, 0.35, 0.40 }
+  bg[ACTIVE] = { 0.35, 0.35, 0.40 }
+  bg[PRELIGHT] = "#565690"
+  bg[INSENSITIVE] = { 0.10, 0.10, 0.10 }
+  bg[SELECTED] = { 0, 0.40, 0.60 }
+  
+  text[NORMAL] = { 0.80, 0.80, 0.80 }  
+  text[ACTIVE] = { 0.80, 0.80, 0.80 }  
+  text[PRELIGHT] = { 0.80, 0.80, 0.80 }        
+  text[INSENSITIVE] = { 0.80, 0.80, 0.80}      
+  text[SELECTED] = { 1.0, 1.0, 1.0 }
+  
+  base[ACTIVE]     = "#272a2f"
+  base[NORMAL]      =  "#1a1e20"
+  base[PRELIGHT]     = { 0.20, 0.20, 0.20 }
+  base[INSENSITIVE]  = "#4c5159"
+  base[SELECTED]     = { 0.25, 0.25, 0.25 }
+
+  engine "clearlooks" 
+  {
+    menubarstyle      = 0       # 0 = flat, 1 = sunken, 2 = flat gradient
+  }
+}
+
+style "base_frame"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+}
+
+style "transport_base" = "medium_bold_text"
+{
+  bg[NORMAL] = { 0.10, 0.10, 0.10 }
+  bg[ACTIVE] = { 0, 0, 0 }
+  bg[PRELIGHT] = { 0, 0, 0 }
+  bg[INSENSITIVE] = { 0, 0, 0 }
+  bg[SELECTED] = { 0, 0, 0 }
+}
+/*
+style "black_mackie_menu_bar"
+{
+  font_name = "%FONT_BOLD_NORMAL%"
+  fg[NORMAL] = { 1.0, 1.0, 1.0 }
+  bg[NORMAL] = { 0, 0, 0 }
+}
+*/
+style "default_buttons_menus" 
+{
+  font_name = "%FONT_NORMAL%"
+  fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+  
+  bg[NORMAL] = { 0.30, 0.30, 0.35 }
+  bg[ACTIVE] = "#565690"
+  bg[PRELIGHT] = { 0.15, 0.15, 0.20 }
+  bg[INSENSITIVE] = { 0.15, 0.15, 0.20 }
+  bg[SELECTED] = { 0.15, 0.15, 0.20 }  
+}
+
+style "very_small_button" = "default_buttons_menus"
+{
+       font_name = "%FONT_SMALLER%"
+       ythickness = 0
+       xthickness = 0
+}
+
+style "small_button" = "default_buttons_menus"
+{
+}
+
+style "very_small_red_active_and_selected_button" = "very_small_button"
+{
+       bg[ACTIVE] = { 1.0, 0, 0}
+       bg[SELECTED] = { 1.0, 0, 0}
+}
+
+style "small_red_active_and_selected_button" = "small_button"
+{
+       fg[ACTIVE] = { 0, 0, 0 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+       bg[SELECTED] = { 1.0, 0, 0}
+}
+
+style "gain_fader"
+{
+       bg[NORMAL] =   { 0.269, 0.269, 0.300}
+       bg[ACTIVE] =   { 0.152, 0.152, 0.168 }
+}
+
+
+style "track_rec_enable_button" = "small_button"
+{
+}
+
+style "track_rec_enable_button_active" = "small_button"
+{
+       fg[SELECTED] = { 0.0, 0.0, 0.0 }
+       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
+       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
+       fg[NORMAL] = { 0.0, 0.0, 0.0 }
+
+       bg[NORMAL] =   { 1.0, 0.0, 0.0 }
+       bg[ACTIVE] =   { 1.0, 0.0, 0.0 }
+       bg[SELECTED] =   { 1.0, 0.0, 0.0 }
+       bg[PRELIGHT] =   { 1.0, 0.0, 0.0 }
+}
+
+style "track_rec_enable_button_alternate" = "small_button"
+{
+       fg[SELECTED] = { 0.0, 0.0, 0.0 }
+       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
+       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
+       fg[NORMAL] = { 0.0, 0.0, 0.0 }
+
+       bg[NORMAL] =   { 0.91, 0.68, 0.68}
+       bg[ACTIVE] =   { 0.91, 0.68, 0.68}
+       bg[SELECTED] =   { 0.91, 0.68, 0.68}
+       bg[PRELIGHT] =   { 0.91, 0.68, 0.68}
+}
+
+style "mixer_track_rec_enable_button" = "track_rec_enable_button"
+{
+       font_name = "%FONT_SMALLER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_track_rec_enable_button_alternate" = "track_rec_enable_button_alternate"
+{
+       font_name = "%FONT_SMALLER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_track_rec_enable_button_active" = "track_rec_enable_button_active"
+{
+       font_name = "%FONT_SMALLER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "solo_button" = "small_button"
+{
+}
+
+style "solo_button_alternate" = "small_button"
+{
+       bg[NORMAL] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[ACTIVE] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[SELECTED] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[PRELIGHT] = { 0.19, 0.97, 0.69 } # solo-safe
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+
+style "solo_button_active" = "small_button"
+{
+       bg[NORMAL] = { 0.66, 0.97, 0.19 }   # solo
+       bg[ACTIVE] = { 0.66, 0.97, 0.19 }   # solo
+       bg[SELECTED] = { 0.66, 0.97, 0.19 }   # solo
+       bg[PRELIGHT] = { 0.66, 0.97, 0.19 }   # solo
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mixer_solo_button" = "solo_button"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_solo_button_alternate" = "solo_button_alternate"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+style "mixer_solo_button_active" = "solo_button_active"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+
+style "mute_button" = "small_button"
+{
+}
+
+style "mute_button_alternate" = "small_button"
+{
+       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
+       bg[NORMAL] = { 1.0, 0.98, 0.53 }
+       bg[SELECTED] = { 1.0, 0.98, 0.53 }
+       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
+
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mute_button_active" = "small_button"
+{
+       bg[NORMAL] = { 0.90, 0.89, 0.73 }
+       bg[ACTIVE] = { 0.90, 0.89, 0.73 }
+       bg[PRELIGHT] = { 0.90, 0.89, 0.73 }
+       bg[SELECTED] = { 0.90, 0.89, 0.73 }
+
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mixer_mute_button" = "mute_button"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button_alternate" = "mute_button_alternate"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button_active" = "mute_button_active"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "multiline_combo" = "small_button"
+{
+       font_name = "%FONT_NORMAL%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button" = "mute_button"
+{
+       font_name = "%FONT_SMALLER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "track_loop_button" = "small_button"
+{
+       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
+       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
+
+}
+
+style "mixer_red_active_button" = "very_small_button"
+{
+       fg[ACTIVE] = { 0, 1.0, 1.0 }
+       bg[ACTIVE] = { 0.7, 0, 0 }
+
+       base[INSENSITIVE] = { 0.16, 0.16, 0.21 }
+       bg[INSENSITIVE] = { 0.16, 0.16, 0.21 }
+}
+
+style "time_button" = "default_buttons_menus"
+{
+       font_name = "%FONT_NORMAL%"
+}
+
+style "transport_button"
+{
+}
+
+style "transport_button_active"
+{
+       bg[NORMAL] = { 0.50, 1.0, 0.50 }
+       bg[ACTIVE] = { 0.50, 1.0, 0.50 }
+       bg[SELECTED] = { 0.50, 1.0, 0.50 }
+       bg[PRELIGHT] = { 0.50, 1.0, 0.50 }
+
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "transport_rec_button"
+{
+}
+
+style "transport_rec_button_active"
+{
+       bg[ACTIVE] = { 1.0, 0, 0 }
+       bg[NORMAL] = { 1.0, 0, 0 }
+       bg[SELECTED] = { 1.0, 0, 0 }
+       bg[PRELIGHT] = { 1.0, 0, 0 }
+}
+
+style "transport_rec_button_alternate"
+{
+       bg[PRELIGHT] = { 0.91, 0.68, 0.68 }
+       bg[NORMAL] = { 0.91, 0.68, 0.68 }
+       bg[SELECTED] = { 0.91, 0.68, 0.68 }
+       bg[ACTIVE] = { 0.91, 0.68, 0.68 }
+}
+
+style "shuttle_control" = "very_small_text"
+{
+       fg[NORMAL] = { 0.85, 0.92, 0.98 }
+       fg[ACTIVE] = { 0.85, 0.92, 0.98 }
+       fg[PRELIGHT] = { 0.85, 0.92, 0.98 }
+       fg[SELECTED] = { 0.85, 0.92, 0.98 }
+       fg[INSENSITIVE] = { 0.85, 0.92, 0.98 }
+
+       bg[NORMAL] = { 0.26, 0.26, 0.31 }
+       bg[PRELIGHT] = { 0.26, 0.26, 0.31 }
+       bg[INSENSITIVE] = { 0.26, 0.26, 0.31 }
+       bg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       bg[SELECTED] = { 1.0, 0.04, 0.04 }
+}
+
+style "ardour_adjusters" = "default_buttons_menus"
+{
+       bg[NORMAL] = { 0.60, 0.60, 0.60 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.06, 0.06, 0.06 }
+}
+
+style "editor_hscrollbar" = "ardour_adjusters"
+{
+       #
+       # special case: we want this scrollbar to be as tall as the
+       # zoom focus selector combobox. scrollbars don't expand to
+        # fill the space available to them, so we have to explicitly
+       # make it bigger.
+       # 
+       GtkRange::slider_width = 27
+       GtkScrollbar::slider_width = 27
+}
+
+style "ardour_progressbars" = "default_buttons_menus"
+{ 
+  bg[NORMAL] = { 0, 0, 0 }
+  bg[PRELIGHT] = { 0.00, 0.36, 0.40 }
+}
+
+style "preferences"  = "default_base"
+{
+       font_name = "%FONT_NORMAL%"
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "option_entry"  = "default_base"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       
+       base[INSENSITIVE] = { 0.07, 0.07, 0.12 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       bg[ACTIVE] = { 0.35, 0.35, 0.40 }
+}
+
+style "red_when_active" = "medium_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.26, 0.26, 0.31 }
+
+       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+}
+
+style "xrun_warn"  
+{
+       font_name = "%FONT_BOLD_LARGE%"
+
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       text[NORMAL] = { 1.0, 1.0, 1.0 }
+       text[ACTIVE] = { 1.0, 1.0, 1.0 }
+       base[NORMAL] = { 0.09, 0.48, 0.46 }
+       base[ACTIVE] = { 0.09, 0.48, 0.46 }
+       bg[NORMAL] = { 1.0, 0.48, 0.46 }
+       bg[ACTIVE] = { 0.09, 1.0, 0.46 }
+}
+/*
+style "menu_bar_base" = "default_base"
+{
+       bg[NORMAL] = { 0.2, 0.2, 0.3 }
+       bg[ACTIVE] = { 0, 0, 0 }
+       bg[PRELIGHT] = { 0, 0, 0 }
+       bg[INSENSITIVE] = { 0, 0, 0 }
+       bg[SELECTED] = { 0, 0, 0 }
+}
+*/
+style "fatal_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 1.0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "error_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "info_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "warning_message" = "medium_text"
+{
+   fg[ACTIVE] = { 0.30,0.30, 1.0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0, 0, 0 }
+   bg[NORMAL] = { 0, 0, 0 }
+   base[ACTIVE] = { 0, 0, 0 }
+   base[NORMAL] = { 0, 0, 0 }
+}
+
+style "medium_entry" = "medium_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+}
+
+style "medium_entry_noselection_fg" = "medium_entry"
+{
+       fg[SELECTED] = { 0.50, 1.0, 0.50 }
+}
+
+style "medium_entry_noselection_bg" = "medium_entry"
+{
+       bg[SELECTED] = { 1.0, 1.0, 1.0 }
+}
+
+style "medium_bold_entry"  = "medium_bold_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "small_entry" = "small_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0, 1.0, 0 }
+       fg[SELECTED] = { 0, 1.0, 0 }
+       text[NORMAL] = { 0.70, 0.70, 0.70 }
+       text[ACTIVE] = { 0, 1.0, 0 }
+       text[SELECTED] = { 0, 1.0, 0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[SELECTED] = { 0.0, 0.0, 0.0 }
+       bg[SELECTED] = { 0.0, 0.0, 0.0 }
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "red_active_small_entry" = "small_entry"
+{
+       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+}
+
+style "small_bold_entry" = "small_bold_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "small_red_on_black_entry"  = "small_bold_text"
+{
+       fg[NORMAL] = { 1.0, 0, 0 }
+       fg[ACTIVE] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
+}
+
+style "non_recording_big_clock_display" = "medium_entry"
+{
+       font_name = "%FONT_MASSIVE%"
+
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       fg[PRELIGHT] = { 1.0, 0, 0.0 }
+       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
+       
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.7, 0.0, 0.0 }  
+}
+
+style "recording_big_clock_display" = "non_recording_big_clock_display"
+{
+       fg[NORMAL] = { 1.0, 0, 0 }
+}
+
+style "transport_clock_display"
+{
+       font_name = "%FONT_BOLD_BIGGER%"
+       
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       fg[PRELIGHT] = { 1.0, 0, 0.0 }
+       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
+       
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
+}
+
+style "transport_clock_display_delta" = "transport_clock_display"
+{
+       fg[NORMAL] = { 0.30, 0.30, 1.0 }
+}
+
+style "tempo_meter_clock_display"
+{
+       font_name = "%FONT_SMALLER%"
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0.0, 0.48, 1.0 }
+       base[ACTIVE] = { 0.09, 0.98, 0.46 }
+       bg[NORMAL] = { 0.0, 0.48, 1.0 }
+       bg[ACTIVE] = { 0.09, 0.98, 0.46 }
+}
+
+style "default_clock_display" = "medium text"
+{
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       bg[NORMAL] = { 0, 0, 0 }
+       bg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "editor_time_ruler" = "small_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.09, 0.09, 0.09 }
+}
+
+style "audio_bus_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
+  bg[NORMAL] = { 0.20, 0.20, 0.26 }    
+}
+
+style "audio_track_base" = "default_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  bg[NORMAL] = { 0.18, 0.19, 0.22 }
+  bg[ACTIVE] = { 0.20, 0.20, 0.20 }    
+  bg[PRELIGHT] = { 0.20, 0.20, 0.20 }
+  bg[INSENSITIVE] = { 0.20, 0.20, 0.20 }
+  bg[SELECTED] = { 0.20, 0.20, 0.20 }
+}
+
+style "midi_bus_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
+  #bg[NORMAL] = {0, 0.36, 0.40 }
+  bg[NORMAL] = "#444466"       
+}
+
+style "midi_track_base" = "default_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  bg[NORMAL] = { 0.48, 0.30, 0.32 }
+  bg[ACTIVE] = { 0.20, 0.20, 0.20 }    
+  bg[PRELIGHT] = { 0.20, 0.20, 0.20 }
+  bg[INSENSITIVE] = { 0.20, 0.20, 0.20 }
+  bg[SELECTED] = { 0.20, 0.20, 0.20 }
+}
+
+style "track_controls_inactive" 
+{
+       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
+       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
+       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
+       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
+       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
+
+       #font_name = "sans 18"
+       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
+}
+
+style "audio_track_metrics" = "audio_track_base"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "audio_bus_metrics" = "audio_bus_base"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "audio_track_metrics_inactive" = "track_controls_inactive"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "audio_bus_metrics_inactive" = "track_controls_inactive"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "track_name_display"
+{
+       font_name = "%FONT_NORMAL%"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
+
+       base[NORMAL] = { 0.06, 0.06, 0.06 }
+       base[ACTIVE] = { 0.26, 0.26, 0.26 }
+       bg[NORMAL] = { 0.26, 0.26, 0.26 }
+       bg[ACTIVE] = { 0.26, 0.26, 0.26 }
+}
+
+style "active_track_name_display"
+{
+       font_name = "%FONT_NORMAL%"
+       text[NORMAL] = { 0.26, 0.26, 0.26 }
+       base[NORMAL] = { 0.89, 0.89, 0.89 }
+}
+
+style "track_separator"
+{
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+}
+
+#
+# Track edit groups. These styles define
+# the colors that the "edit" button will
+# use as a track is moved from
+# track edit group to track edit group.
+# There are 8 edit groups. Edit group 0
+# is used for tracks that are not editable, 
+# so we leave its style to the default.
+#
+
+style "edit_group_0"
+
+{
+       bg[ACTIVE] = { 1.0, 0.65, 0.13 }
+       bg[NORMAL] = { 0.31, 0.31, 0.31 }
+       fg[NORMAL] = { 0.82, 0.91, 0.99 }
+       fg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "edit_group_1" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "edit_group_2" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "edit_group_3" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "treeview_parent_node"
+{
+       # specifies *just* the color used for whole file rows when not selected
+       fg[NORMAL] = { 0.0, 0.6, 0.85 }
+}
+
+style "treeview_display" = "small_bold_text"
+{
+       # expander arrow border and DnD "icon" text
+       fg[NORMAL] = { 0.8, 0.8, 0.8 } 
+
+       # background with no rows or no selection, plus
+       # expander arrow core and DnD "icon" background
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+
+       # selected row bg when window does not have focus (including during DnD)
+       base[ACTIVE] = { 0.0, 0.60, 0.60 }    
+
+       # selected row bg when window has focus
+       base[SELECTED] = { 0, 0.75, 0.75 }
+
+       # row text when in normal state and not a parent
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+
+       # selected row text with window focus
+       text[SELECTED] = { 0, 1.0, 1.0 }  
+
+       # selected row text without window focus (including during DnD)
+       text[ACTIVE] = { 0, 1.0, 1.0 }  
+}
+
+style "main_canvas_area"
+{
+       bg[NORMAL] = { 0.30, 0.30, 0.34 }
+       bg[ACTIVE] = { 0.30, 0.30, 0.34 }
+       bg[INSENSITIVE] = { 0.30, 0.30, 0.34 }
+       bg[SELECTED] = { 0.30, 0.30, 0.34 }
+       bg[PRELIGHT] = { 0.30, 0.30, 0.34 }
+}
+
+style "track_controls_inactive"
+{
+       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
+       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
+       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
+       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
+       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
+
+       font_name = "%FONT_LARGE%"
+       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
+}
+
+style "edit_controls_base_selected"
+{
+       bg[NORMAL] = { 0.32, 0.32, 0.54 }
+       bg[ACTIVE] = { 0.32, 0.32, 0.54 }
+       bg[INSENSITIVE] = { 0.32, 0.32, 0.54 }
+       bg[SELECTED] = { 0.32, 0.32, 0.54 }
+       bg[PRELIGHT] = { 0.32, 0.32, 0.54 }
+}
+
+style "automation_track_controls_base"
+{
+       bg[NORMAL] = { 0.22, 0.22, 0.29 }
+       bg[ACTIVE] = { 0.22, 0.22, 0.29 }
+       bg[INSENSITIVE] = { 0.22, 0.22, 0.29 }
+       bg[SELECTED] = { 0.22, 0.22, 0.29 }
+       bg[PRELIGHT] = { 0.22, 0.22, 0.29 }
+}
+
+# Plugin Editors
+style "plugin_slider" 
+{
+       font_name ="%FONT_BOLD_BIG%"
+
+       # the slider itself. the inactive part is INSENSITIVE,
+       # the active part is something else.
+
+       fg[NORMAL] = { 0.37, 0.43, 0.52 }
+       fg[ACTIVE] = { 0.37, 0.43, 0.52 }
+       fg[INSENSITIVE] = {0.35, 0.35, 0.40 } # matches default_base
+       fg[SELECTED] = { 0.37, 0.43, 0.52 }
+       fg[PRELIGHT] = { 0.37, 0.43, 0.52 }
+
+       # draws the outer rectangle around the slider
+
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[INSENSITIVE] = {0.80, 0.80, 0.80 }
+       bg[SELECTED] = { 0.80, 0.80, 0.80 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+
+       # the numeric display
+
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.80, 0.80, 0.80 }
+       text[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       text[SELECTED] = { 0.80, 0.80, 0.80 }
+       text[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "track_list_display" = "small_bold_text"
+{
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.3, 0.3, 0.3 }
+       text[INSENSITIVE] = { 0, 0, 0 }
+       text[SELECTED] = { 0.8, 0.8, 0.8 }
+
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[INSENSITIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "inspector_track_list_display" = "track_list_display"
+{
+       text[ACTIVE] = { 0.8, 0.8, 0.8 }
+
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0.2, 0.2, 0.2 }
+       base[INSENSITIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0.3, 0.3, 0.4 }
+}
+
+style "redirect_list_display"
+{
+       GtkTreeView::horizontal-separator = 0
+       GtkTreeView::vertical-separator = 0
+
+       font_name = "%FONT_SMALL%"
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.70, 0.70, 0.70 }
+       text[INSENSITIVE] = { 0, 0, 0 }
+       text[SELECTED] = { 0.9, 0.3, 0.3 }
+
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[INSENSITIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+
+       # these two are explicitly used by the cell renderer for the
+        # text
+
+       fg[NORMAL] = { 0.5, 0.5, 0.5 }  # used for inactive
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }  # used for active
+}
+
+style "inspector_redirect_list_display" = "redirect_list_display"
+{
+       base[SELECTED] = { 0.3, 0.3, 0.3 }
+}
+
+# MixerPanZone:
+#
+# the NORMAL fg color is used for the pan puck
+# the ACTIVE fg color is used for the speaker boxes
+
+style "pan_zone" = "default_base"
+{
+       fg[NORMAL] = { 0.34, 0.95, 0.92 }
+       fg[ACTIVE] = { 0.95, 0.48, 0.11 }
+}
+
+style "paler_red_when_active" = "medium_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.31, 0.31, 0.31 }
+       bg[PRELIGHT] = { 0.31, 0.31, 0.31 }
+
+       fg[ACTIVE] = { 0.36, 0.46, 0.28 }
+       bg[ACTIVE] = { 1.00, 0.59, 0.59}
+}
+
+style "peak_display_peaked_entry" = "small_text"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+
+       bg[NORMAL] = {0.9, 0.0, 0.0 }   
+       bg[ACTIVE] = { 0.9, 0.0, 0.0 }  
+       bg[PRELIGHT] = { 0.9, 0.0, 0.0 }        
+       bg[INSENSITIVE] = { 0.9, 0.0, 0.0 }     
+       bg[SELECTED] = { 0.9, 0.0, 0.0 }        
+       base[NORMAL] = { 0.9, 0.0, 0.0 }        
+       base[ACTIVE] = { 0.9, 0.0, 0.0 }        
+       base[PRELIGHT] = { 0.9, 0.0, 0.0 }      
+       base[INSENSITIVE] = { 0.9, 0.0, 0.0 }   
+       base[SELECTED] = { 0.9, 0.0, 0.0 }      
+}
+
+style "selected_strip_frame"
+{
+       fg[NORMAL] = { 0.74, 0.42, 0.47 }
+       bg[NORMAL] = { 0.79, 0.28, 0.18 }
+}
+
+style "flashing_alert" = "very_small_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.26, 0.26, 0.31 }
+
+       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+}
+
+style "selected_io_selector_port_list" = "medium_bold_text"
+{
+
+       GtkTreeView::even-row-color = { 0, 0, 0 }
+       GtkTreeView::odd-row-color = { 0, 0, 0 }
+
+# fg is used to color the fg (text) of the column header button
+
+       fg[NORMAL] = { 0.85, 0.85, 0.85 }
+       fg[SELECTED] = { 0.85, 0.85, 0.85 }
+       fg[ACTIVE] = { 0.85, 0.85, 0.85 }
+       fg[PRELIGHT] = { 0.85, 0.85, 0.85 }
+       fg[INSENSITIVE] = { 0.85, 0.85, 0.85 }
+
+# bg is used used to color the background of the column header button
+
+       bg[NORMAL] = { 0.30, 0.30, 0.35 }
+       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
+       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
+       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
+       bg[SELECTED] = { 0.30, 0.30, 0.35 }
+
+# text is used to color the treeview row text
+
+       text[NORMAL] = { 0.85, 0.85, 0.85 }
+       text[SELECTED] = { 0.85, 0.85, 0.85 }
+
+# base is used to color a treeview with no rows
+
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+       base[ACTIVE] = { 0.20, 0.20, 0.25 }
+       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
+       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
+       base[SELECTED] = { 0.20, 0.20, 0.25 }
+
+}
+
+style "io_selector_port_list" = "medium_text"
+{
+       GtkTreeView::even-row-color = { 0.20, 0.20, 0.25 }
+       GtkTreeView::odd-row-color = { 0.20, 0.20, 0.25 }
+# fg is used to color the fg (text) of the column header button
+
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[SELECTED] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       fg[PRELIGHT] = { 0.70, 0.70, 0.70 }
+       fg[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+
+# bg is used used to color the background of the column header button
+
+       bg[NORMAL] = { 0.30, 0.30, 0.35 }
+       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
+       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
+       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
+       bg[SELECTED] = { 0.30, 0.30, 0.35 }
+
+# text is used to color the treeview row text
+
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[SELECTED] = { 0.80, 0.80, 0.80 }
+
+# base is used to color a treeview with no rows
+
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+       base[ACTIVE] = { 0.20, 0.20, 0.25 }
+       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
+       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
+       base[SELECTED] = { 0.20, 0.20, 0.25 }
+}
+
+style "io_selector_notebook" = "default_base"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+        font_name ="%FONT_BOLD_NORMAL%"
+}
+
+style "tearoff_arrow" = "medium_bold_entry"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "location_row_button" = "default_buttons_menus"
+{
+       font_name = "%FONT_BIG%"
+}
+
+style "location_rows_clock" = "default_clock_display"
+{
+       font_name = "%FONT_BIG%"
+}
+
+style "pan_slider" 
+{
+       font_name = "%FONT_NORMAL%"
+
+       fg[NORMAL] = { 0.22, 0.73, 0.22 }
+       fg[ACTIVE] = { 0.22, 0.73, 0.22 }
+       fg[INSENSITIVE] = {0.22, 0.53, 0.22 } 
+       fg[SELECTED] = { 0.67, 0.23, 0.22 }
+       fg[PRELIGHT] = { 0.67, 0.23, 0.22 }
+
+       bg[NORMAL] = { 0.05, 0.05, 0.05 }
+       bg[ACTIVE] = { 0, 0, 0 }
+       bg[INSENSITIVE] = {0.12, 0.19, 0.25 } 
+       bg[SELECTED] = { 0, 0, 0 }
+       bg[PRELIGHT] = { 0, 0, 0 }
+
+       text[NORMAL] = { 0.70, 0.70, 0.70 }
+       text[ACTIVE] = { 0.70, 0.70, 0.70 }
+       text[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+       text[SELECTED] = { 0.70, 0.70, 0.70 }
+       text[PRELIGHT] = { 0.70, 0.70, 0.70 }
+
+       # used to draw the triangular indicators 
+
+       base[NORMAL] = { 0.80, 0.80, 0.80 }
+       base[ACTIVE] =  { 0.80, 0.80, 0.80 }
+       base[INSENSITIVE] = {0.6, 0.6, 0.6 }
+       base[SELECTED] = { 0.80, 0.80, 0.80 }
+       base[PRELIGHT] = { 0.80, 0.80, 0.80 }
+
+}
+
+style "ardour_button" ="default_buttons_menus"
+{
+       xthickness = 1
+       ythickness = 1
+}
+
+#---------------------------------------------------------------
+
+class "GtkWidget" style:highest "default_base"
+class "GtkScrollbar" style:highest "ardour_adjusters"
+class "GtkLabel" style:highest "default_buttons_menus"
+class "GtkButton" style:highest "ardour_button"
+class "GtkArrow" style:highest "tearoff_arrow"
+class "GtkProgressBar" style:highest "ardour_progressbars"
+
+widget "*FirstActionMessage" style:highest "first_action_message"
+widget "*VerboseCanvasCursor" style:highest "verbose_canvas_cursor"
+widget "*MarkerText" style:highest "marker_text"
+widget "*TimeAxisViewItemName*" style:highest "time_axis_view_item_name"
+#widget "*ExportProgress" style:highest "default_buttons_menus"
+widget "*ExportFileLabel" style:highest "small_bold_text"
+widget "*ExportFormatLabel" style:highest "medium_bold_text"
+widget "*ExportHeader" style:highest "small_bold_text"
+widget "*ExportFileDisplay" style:highest "medium_entry"
+widget "*ExportFormatDisplay" style:highest "medium_entry"
+widget "*ExportCheckbox" style:highest "small_entry"
+widget "*ExportTrackSelector*" style:highest "medium_entry_noselection_bg"
+widget "*EditModeSelector" style:highest "medium_bold_entry"
+widget "*SnapTypeSelector" style:highest "medium_bold_entry"
+widget "*SnapModeSelector" style:highest "medium_bold_entry"
+widget "*ZoomFocusSelector" style:highest "medium_bold_entry"
+widget "*ArdourContextMenu*" style:highest "default_buttons_menus"
+widget "*EditGroupTitleButton*" style:highest "default_buttons_menus"
+widget "*MixerGroupTitleButton*" style:highest "default_buttons_menus"
+widget "*ErrorLogCloseButton" style:highest "default_buttons_menus"
+widget "*EditorGTKButton*" style:highest "default_buttons_menus" 
+widget "*ToolbarButton" style:highest "default_buttons_menus"
+widget "*ToolbarButton*" style:highest "default_buttons_menus"
+widget "*CrossfadeEditButton" style:highest "default_buttons_menus"
+widget "*CrossfadeEditButton*" style:highest "default_buttons_menus"
+widget "*TrackHistoryButton*" style:highest "default_buttons_menus"
+widget "*TrackSizeButton*" style:highest "default_buttons_menus"
+widget "*TrackPlaylistButton*" style:highest "default_buttons_menus"
+widget "*TrackAutomationButton*" style:highest "default_buttons_menus"
+widget "*TrackGroupButton*" style:highest "default_buttons_menus"
+widget "*TrackMixButton*" style:highest "default_buttons_menus"
+widget "*TrackVisualButton*" style:highest "default_buttons_menus"
+widget "*TrackRemoveButton*" style:highest "default_buttons_menus"
+widget "*BaseButton" style:highest "default_buttons_menus"
+widget "*TakeButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerWidthButton" style:highest "default_buttons_menus"
+widget "*MixerHideButton" style:highest "default_buttons_menus"
+widget "*MixerSendButton" style:highest "default_buttons_menus"
+widget "*MixerSendButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerSendSwitch" style:highest "default_buttons_menus"
+widget "*MixerInsertButton" style:highest "default_buttons_menus"
+widget "*MixerInsertButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerInsertSwitch" style:highest "default_buttons_menus"
+widget "*MixerMonitorInputButton*" style:highest "very_small_button"
+widget "*MixerMonitorInputButton.*" style:highest "very_small_button"
+widget "*MixerIOButton" style:highest "very_small_button"
+widget "*MixerIOButtonLabel" style:highest "very_small_button"
+widget "*AddRouteDialogSpinner" style:highest "ardour_adjusters"
+widget "*AddRouteDialogRadioButton*" style:highest "preferences"
+widget "*OptionsNotebook" style:highest "preferences"
+widget "*OptionEditorToggleButton*" style:highest "preferences"
+widget "*OptionsLabel" style:highest "preferences"
+widget "*OptionEditorAuditionerLabel" style:highest "preferences"
+widget "*OptionsEntry" style:highest "option_entry"
+widget "*InspectorNotebook" style:highest "preferences"
+widget "*NewSessionDialog" style:highest "preferences"
+widget "*NewSessionDialogButton*" style:highest "preferences"
+widget "*MixerSendSwitch*" style:highest "very_small_red_active_and_selected_button"
+widget "*OptionEditorToggleButton" style:highest "small_red_active_and_selected_button"
+widget "*NewSessionDialogButton" style:highest "small_red_active_and_selected_button"
+widget "*RecordEnableButton" style:highest "track_rec_enable_button"
+widget "*RecordEnableButton-active" style:highest "track_rec_enable_button_active"
+widget "*RecordEnableButton-alternate" style:highest "track_rec_enable_button_alternate"
+widget "*MixerRecordEnableButton" style:highest "mixer_track_rec_enable_button"
+widget "*MixerRecordEnableButton-active" style:highest "mixer_track_rec_enable_button_active"
+widget "*MixerRecordEnableButton-alternate" style:highest "mixer_track_rec_enable_button_alternate"
+widget "*MuteButton" style:highest "mute_button"
+widget "*MuteButton-alternate" style:highest "mute_button_alternate"
+widget "*MuteButton-active" style:highest "mute_button_active"
+widget "*MixerMuteButton" style:highest "mixer_mute_button"
+widget "*MixerMuteButton-alternate" style:highest "mixer_mute_button_alternate"
+widget "*MixerMuteButton-active" style:highest "mixer_mute_button_active"
+widget "*SoloButton" style:highest "solo_button"
+widget "*SoloButton-alternate" style:highest "solo_button_alternate"
+widget "*SoloButton-active" style:highest "solo_button_active"
+widget "*MixerSoloButton" style:highest "mixer_solo_button"
+widget "*MixerSoloButton-alternate" style:highest "mixer_solo_button_alternate"
+widget "*MixerSoloButton-active" style:highest "mixer_solo_button_active"
+widget "*TrackLoopButton*" style:highest "track_loop_button"
+widget "*PanAutomationLineSelector*" style:highest "multiline_combo"
+widget "*EditorTimeButton*" style:highest "time_button"
+widget "*MixerPhaseInvertButton*" style:highest "very_small_button"
+widget "*MixerPhaseInvertButton.*" style:highest "very_small_button"
+widget "*MixerAutomationRecordingButton*" style:highest "very_small_button"
+widget "*MixerAutomationRecordingButton.*" style:highest "very_small_button"
+widget "*MixerAutomationModeButton*" style:highest "very_small_button"
+widget "*MixerAutomationModeButton.*" style:highest "very_small_button"
+widget "*MixerAutomationPlaybackButton*" style:highest "very_small_button"
+widget "*MixerAutomationPlaybackButton.*" style:highest "very_small_button"
+widget "*MixerNameButton" style:highest "very_small_button"
+widget "*MixerNameButtonLabel" style:highest "very_small_button"
+widget "*MixerGroupButton" style:highest "very_small_button"
+widget "*MixerGroupButtonLabel" style:highest "very_small_button"
+widget "*MixerCommentButton" style:highest "very_small_button"
+widget "*MixerCommentButton*" style:highest "very_small_button"
+widget "*EditGroupButton" style:highest "very_small_button"
+widget "*EditGroupButtonLabel" style:highest "very_small_button"
+widget "*TransportButton" style:highest "transport_rec_button"
+widget "*TransportButton-active" style:highest "transport_button_active"
+widget "*ShuttleButton" style:highest "transport_button"
+widget "*ShuttleButton*" style:highest "transport_button"
+widget "*ShuttleDisplay" style:highest "transport_button"
+widget "*ShuttleDisplay*" style:highest "transport_button"
+widget "*ShuttleControl" style:highest "shuttle_control"
+widget "*TransportRecButton" style:highest "transport_rec_button"
+widget "*TransportRecButton*" style:highest "transport_rec_button"
+widget "*TransportRecButton-active" style:highest "transport_rec_button_active"
+widget "*TransportRecButton-active*" style:highest "transport_rec_button_active"
+widget "*TransportRecButton-alternate" style:highest "transport_rec_button_alternate"
+widget "*TransportRecButton-alternate*" style:highest "transport_rec_button_alternate"
+widget "*TransportRecButton*" style:highest "transport_rec_button"
+widget "*RecordingXrunWarningWindow" style:highest "xrun_warn"
+widget "*RecordingXrunWarningWindow*" style:highest "xrun_warn"
+/*widget "*MainMenuBar" style:highest "menu_bar_base"*/
+widget "*ErrorMessage" style:highest "error_message"
+widget "*FatalMessage" style:highest "fatal_message"
+widget "*InfoMessage" style:highest "info_message"
+widget "*WarningMessage" style:highest "warning_message"
+widget "*BigClockNonRecording" style:highest "non_recording_big_clock_display"
+widget "*BigClockRecording" style:highest "recording_big_clock_display"
+widget "*TransportClockDisplay" style:highest "transport_clock_display"
+widget "*SecondaryClockDisplay" style:highest "transport_clock_display"
+widget "*TransportClockDisplayDelta" style:highest "transport_clock_display_delta"
+widget "*SecondaryClockDisplayDelta" style:highest "transport_clock_display_delta"
+widget "*AudioClockFramesUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockFramesLowerInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockSMPTEUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockSMPTELowerInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockBBTUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockBBTLowerInfo" style:highest "tempo_meter_clock_display"
+widget "*SelectionStartClock" style:highest "default_clock_display"
+widget "*SelectionEndClock" style:highest "default_clock_display"
+widget "*EditPointClock" style:highest "default_clock_display"
+widget "*PreRollClock" style:highest "default_clock_display"
+widget "*PostRollClock" style:highest "default_clock_display"
+widget "*NudgeClock" style:highest "default_clock_display"
+widget "*ZoomRangeClock" style:highest "default_clock_display"
+widget "*SMPTEOffsetClock" style:highest "default_clock_display"
+widget "*TransportLabel" style:highest "small_bold_text"
+widget "*TakeLabel" style:highest "small_bold_text"
+widget "*LocationLabel" style:highest "small_bold_text"
+widget "*WipeLabel" style:highest "small_bold_text"
+widget "*TakeTagLabel" style:highest "small_bold_text"
+widget "*ToolBarLabel" style:highest "small_bold_text"
+widget "*EditorDisplayLabel" style:highest "small_bold_text"
+widget "*NewSessionLabel" style:highest "large_text"
+widget "*GlobalButtonLabel" style:highest "default_buttons_menus"
+widget "*ClickButton" style:highest "medium_entry"
+widget "*RegionNameDisplay" style:highest "medium_entry"
+widget "*PluginDisplay" style:highest "medium_entry"
+widget "*SelectionDisplay" style:highest "medium_entry"
+widget "*HistorySelector" style:highest "medium_entry"
+widget "*LocationSelector" style:highest "medium_entry"
+widget "*TakeSelector" style:highest "medium_entry"
+widget "*RegionSelector" style:highest "medium_entry"
+widget "*SMPTERuler" style:highest "editor_time_ruler"
+widget "*BBTRuler" style:highest "editor_time_ruler"
+widget "*FramesRuler" style:highest "editor_time_ruler"
+widget "*MinSecRuler" style:highest "editor_time_ruler"
+widget "*BaseFrame" style:highest "base_frame"
+
+widget "*AudioTrackStripBase" style:highest "audio_track_base"
+widget "*AudioBusStripBase" style:highest "audio_bus_base"
+widget "*MidiTrackStripBase" style:highest "midi_track_base"
+widget "*AudioTrackStripBaseInactive" style:highest "track_controls_inactive"
+widget "*AudioBusStripBaseInactive" style:highest "track_controls_inactive"
+widget "*MidiTrackStripBaseInactive" style:highest "track_controls_inactive"
+widget "*FaderMetricsStrip" style:highest "audio_track_metrics"
+widget "*AudioTrackMetrics" style:highest "audio_track_metrics"
+widget "*AudioBusMetrics" style:highest "audio_bus_metrics"
+widget "*AudioTrackMetricsInactive" style:highest "audio_track_metrics_inactive"
+widget "*AudioBusMetricsInactive" style:highest "audio_bus_metrics_inactive"
+
+widget "*TimeAxisViewControlsBaseUnselected" style:highest "audio_track_base"
+widget "*AudioTrackControlsBaseUnselected" style:highest "audio_track_base"
+widget "*MidiTrackControlsBaseUnselected" style:highest "midi_track_base"
+widget "*AudioTrackFader" style:highest "gain_fader"
+
+widget "*BusControlsBaseUnselected" style:highest "audio_bus_base"
+widget "*AudioBusFader" style:highest "gain_fader"
+widget "*TrackSeparator" style:highest "track_separator"
+widget "*TrackEditIndicator0*" style:highest "edit_group_0"
+widget "*TrackEditIndicator1*" style:highest "edit_group_1"
+widget "*TrackEditIndicator2*" style:highest "edit_group_2"
+widget "*TrackEditIndicator3*" style:highest "edit_group_3"
+widget "*TrackEditIndicator4*" style:highest "edit_group_3"
+widget "*TrackEditIndicator5*" style:highest "edit_group_3"
+widget "*TrackEditIndicator6*" style:highest "edit_group_3"
+widget "*TrackEditIndicator7*" style:highest "edit_group_3"
+widget "*EditorTrackNameDisplay" style:highest "track_name_display"
+widget "*EditorTrackNameDisplay*" style:highest "track_name_display"
+widget "*EditorActiveTrackNameDisplay" style:highest "active_track_name_display"
+widget "*EditorActiveTrackNameDisplay*" style:highest "active_track_name_display"
+widget "*CrossfadeEditAuditionButton" style:highest "red_when_active"
+widget "*CrossfadeEditAuditionButton*" style:highest "red_when_active"
+widget "*CrossfadeEditCurveButton" style:highest "red_when_active"
+widget "*CrossfadeEditCurveButton*" style:highest "red_when_active"
+widget "*CrossfadeEditLabel" style:highest "medium_text"
+widget "*CrossfadeEditFrame" style:highest "base_frame"
+widget "*MouseModeButton" style:highest "default_buttons_menus"
+widget "*MouseModeButton*" style:highest "default_buttons_menus"
+widget "*EditorMainCanvas" style:highest "main_canvas_area"
+widget "*AudioTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*BusControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*AutomationTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*AutomationTrackName" style:highest "automation_track_name"
+widget "*AudioTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*BusControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*AutomationTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*AudioTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*MidiTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*BusControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*AutomationTrackControlsBase" style:highest "automation_track_controls_base"
+widget "*AutomationTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+/*widget "*EditorMenuBar*" style:highest "black_mackie_menu_bar"
+widget "*MainMenuBar*" style:highest "black_mackie_menu_bar"
+*/
+widget "*ZoomClickBox" style:highest "medium_bold_entry"
+widget "*PluginParameterLabel" style:highest "medium_text"
+widget "*PluginNameInfo" style:highest "plugin_name_text"
+widget "*PluginMakerInfo" style:highest "plugin_maker_text"
+widget "*PluginParameterInfo" style:highest "medium_text"
+widget "*MotionControllerValue" style:highest "medium_entry"
+widget "*ParameterValueDisplay" style:highest "medium_bold_entry"
+widget "*PluginUIClickBox" style:highest "medium_bold_entry"
+widget "*PluginUIClickBox*" style:highest "medium_bold_entry"
+widget "*PluginSlider" style:highest "plugin_slider"
+widget "*RedirectSelector" style:highest "redirect_list_display"
+widget "*RedirectSelector.*" style:highest "redirect_list_display"
+widget "*EditGroupDisplay" style:highest "treeview_display"
+widget "*TrackListDisplay" style:highest "treeview_display"
+widget "*RegionListDisplay" style:highest "treeview_display"
+widget "*NamedSelectionDisplay" style:highest "treeview_display"
+widget "*SnapshotDisplay" style:highest "treeview_display"
+widget "*MixerTrackCommentArea" style:highest "option_entry"
+widget "*MixerPanZone" style:highest "pan_zone"
+widget "*MixerTrackDisplayList" style:highest "treeview_display"
+widget "*MixerSnapshotDisplayList" style:highest "treeview_display"
+widget "*MixerAuxDisplayList" style:highest "treeview_display"
+widget "*MixerGroupList" style:highest "treeview_display"
+widget "*RegionEditorLabel" style:highest "medium_text"
+widget "*RegionEditorSmallLabel" style:highest "small_text"
+widget "*RegionEditorEntry" style:highest "medium_entry"
+widget "*RegionEditorClock" style:highest "default_clock_display"
+widget "*RegionEditorToggleButton" style:highest "paler_red_when_active"
+widget "*RegionEditorToggleButton*" style:highest "paler_red_when_active"
+widget "*MixerStripSpeedBase" style:highest "small_entry"
+widget "*MixerStripSpeedBase*" style:highest "small_entry"
+widget "*MixerStripSpeedBaseNotOne" style:highest "small_red_on_black_entry"
+widget "*MixerStripSpeedBaseNotOne*" style:highest "small_red_on_black_entry"
+widget "*MixerStripGainDisplay" style:highest "small_entry"
+widget "*MixerStripGainDisplay*" style:highest "small_entry"
+widget "*MixerStripGainUnitButton" style:highest "very_small_button"
+widget "*MixerStripGainUnitButton*" style:highest "very_small_button"
+widget "*MixerStripMeterPreButton" style:highest "very_small_button"
+widget "*MixerStripMeterPreButton*" style:highest "very_small_button"
+widget "*MixerStripPeakDisplay*" style:highest "red_active_small_entry"
+widget "*MixerStripPeakDisplayPeak*" style:highest "peak_display_peaked_entry"
+widget "*MixerStripSelectedFrame" style:highest "selected_strip_frame"
+widget "*MixerStripFrame" style:highest "base_frame"
+widget "*HWMonitorButton" style:highest "red_when_active"
+widget "*HWMonitorButton*" style:highest "red_when_active"
+widget "*BypassButton" style:highest "red_when_active"
+widget "*BypassButton*" style:highest "red_when_active"
+widget "*TransportSoloAlert" style:highest "flashing_alert"
+widget "*TransportSoloAlert.*" style:highest "flashing_alert"
+widget "*TransportAuditioningAlert" style:highest "flashing_alert"
+widget "*TransportAuditioningAlert.*" style:highest "flashing_alert"
+widget "*FadeCurve" style:highest "medium_bold_entry"
+widget "*FadeCurve*" style:highest "medium_bold_entry"
+widget "*IOSelectorButton" style:highest "default_buttons_menus"
+widget "*IOSelectorButton*" style:highest "default_buttons_menus"
+widget "*IOSelectorList" style:highest "medium_entry_noselection_fg"
+widget "*IOSelectorPortList" style:highest "io_selector_port_list"
+widget "*IOSelectorPortList.*" style:highest "io_selector_port_list"
+widget "*IOSelectorPortListSelected" style:highest "selected_io_selector_port_list"
+widget "*IOSelectorPortListSelected.*" style:highest "selected_io_selector_port_list"
+widget "*IOSelectorNotebook" style:highest "io_selector_notebook"
+widget "*IOSelectorNotebookTab" style:highest "io_selector_notebook"
+widget "*IOSelectorFrame" style:highest "base_frame"
+widget "*ConnectionEditorButton" style:highest "default_buttons_menus"
+widget "*ConnectionEditorButton*" style:highest "default_buttons_menus"
+widget "*ConnectionEditorList" style:highest "medium_entry_noselection_fg"
+widget "*ConnectionEditorConnectionList" style:highest "medium_entry"
+widget "*ConnectionEditorPortList" style:highest "io_selector_port_list"
+widget "*ConnectionEditorPortListSelected" style:highest "selected_io_selector_port_list"
+widget "*ConnectionEditorNotebook" style:highest "io_selector_notebook"
+widget "*ConnectionEditorNotebookTab" style:highest "io_selector_notebook"
+widget "*ConnectionEditorFrame" style:highest "base_frame"
+widget "*RouteParamsListDisplay" style:highest "inspector_track_list_display"
+widget "*RouteParamsPreListDisplay" style:highest "inspector_redirect_list_display"
+widget "*RouteParamsPostListDisplay" style:highest "inspector_redirect_list_display"
+widget "*TearOffArrow" style:highest "tearoff_arrow"
+widget "*RouteParamsTitleButton" style:highest "medium_text"
+widget "*RouteParamsTitleLabel" style:highest "medium_text"
+widget "*PluginAutomateRecordButton" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomateRecordButton*" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomatePlayButton" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomatePlayButton*" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomateButton" style:highest "small_button"
+widget "*PluginAutomateButton*" style:highest "small_button"
+widget "*PluginSaveButton" style:highest "small_button"
+widget "*PluginSaveButton*" style:highest "small_button"
+widget "*PluginLoadButton" style:highest "small_button"
+widget "*PluginLoadButton*" style:highest "small_button"
+
+widget "*MetricDialogFrame" style:highest "base_frame"
+widget "*MetricEntry" style:highest "medium_bold_entry"
+widget "*MetricButton" style:highest "default_buttons_menus"
+widget "*MetricButton.*" style:highest "default_buttons_menus"
+widget "*MetricLabel" style:highest "medium_text"
+widget "*TimeStretchButton" style:highest "default_buttons_menus"
+widget "*TimeStretchButton.*" style:highest "default_buttons_menus"
+widget "*TimeStretchProgress" style:highest "default_buttons_menus"
+widget "*ChoiceWindow" style:highest "default_buttons_menus"
+widget "*ChoicePrompt" style:highest "default_buttons_menus"
+widget "*ChoiceButton" style:highest "default_buttons_menus"
+widget "*ChoiceButton*" style:highest "default_buttons_menus"
+widget "*SelectionModeButton" style:highest "default_buttons_menus"
+widget "*SelectionModeButton*" style:highest "default_buttons_menus"
+widget "*TrackLabel" style:highest "medium_text"
+widget "*TrackPlugName" style:highest "medium_text"
+widget "*TrackParameterName" style:highest "small_text"
+widget "*AddRouteDialog*" style:highest "medium_text"
+widget "*AddRouteDialog.GtkLabel" style:highest "medium_text"
+widget "*AddRouteDialogChannelChoice" style:highest "medium_bold_entry"
+widget "*AddRouteDialogSpinner" style:highest "medium_bold_entry"
+widget "*AddRouteDialogSpinner*" style:highest "medium_bold_entry"
+widget "*AddRouteDialogRadioButton" style:highest "red_when_active"
+widget "*AddRouteDialogButton" style:highest "default_buttons_menus"
+widget "*AddRouteDialogNameTemplateEntry" style:highest "medium_bold_entry"
+widget "*NewSessionIOLabel" style:highest "larger_bold_text"
+widget "*NewSessionSR1Label" style:highest "red_medium_text"
+widget "*NewSessionSR2Label" style:highest "medium_text"
+widget "*NewSessionChannelChoice" style:highest "medium_bold_entry"
+widget "*NewSessionMainButton" style:highest "larger_bold_text"
+widget "*NewSessionMainButton*" style:highest "larger_bold_text"
+widget "*NewSessionMainLabel" style:highest "larger_bold_text"
+widget "*LocationEditRowClock" style:highest "location_rows_clock"
+widget "*LocationEditNameLabel" style:highest "medium_text"
+widget "*LocationEditSetButton" style:highest "location_row_button"
+widget "*LocationEditSetButton*" style:highest "location_row_button"
+widget "*LocationEditGoButton" style:highest "location_row_button"
+widget "*LocationEditGoButton*" style:highest "location_row_button"
+widget "*LocationEditCdButton" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditCdButton*" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditHideButton" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditHideButton*" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditNumberLabel" style:highest "small_text"
+widget "*LocationLocEditorFrame" style:highest "base_frame"
+widget "*LocationRangeEditorFrame" style:highest "base_frame"
+widget "*LocationEditNameEntry" style:highest "option_entry"
+widget "*LocationAddLocationButton" style:highest "default_buttons_menus"
+widget "*LocationAddLocationButton*" style:highest "default_buttons_menus"
+widget "*LocationAddRangeButton" style:highest "default_buttons_menus"
+widget "*LocationAddRangeButton*" style:highest "default_buttons_menus"
+widget "*LocationEditRemoveButton" style:highest "location_row_button"
+widget "*LocationEditRemoveButton*" style:highest "location_row_button"
+widget "*PanSlider" style:highest "pan_slider"
+widget "*PanningLinkButton" style:highest "mixer_red_active_button"
+widget "*PanningLinkButton.*" style:highest "mixer_red_active_button"
+widget "*PanningLinkDirectionButton" style:highest "very_small_button"
+widget "*PanningLinkDirectionButton.*" style:highest "very_small_button"
+widget "*ChannelCountSelector" style:highest "medium_bold_entry"
+widget "*ChannelCountSelector.GtkArrow" style:highest "default_buttons_menus"
+widget "*RegionListWholeFile" style:highest "treeview_parent_node"
+widget "*EditorHScrollbar" style:highest "editor_hscrollbar"
+
diff --git a/gtk2_ardour/ardour3_ui_default.conf b/gtk2_ardour/ardour3_ui_default.conf
new file mode 100644 (file)
index 0000000..42f5741
--- /dev/null
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Ardour>
+  <UI>
+    <Option name="ui-rc-file" value="ardour3_ui_dark.rc"/>
+  </UI>
+  <Canvas>
+    <Option name="waveform" value="000000cc"/>
+    <Option name="clipped waveform" value="ff0000e5"/>
+    <Option name="region base" value="bfbfc1aa"/>
+    <Option name="selected region base" value="b591a8ff"/>
+    <Option name="midi frame base" value="698f9d6d"/>
+    <Option name="audio track base" value="c6d3d868"/>
+    <Option name="audio bus base" value="dbd1ea68"/>
+    <Option name="midi track base" value="c67e7e5f"/>
+    <Option name="midi bus base" value="ffceea40"/>
+    <Option name="time stretch fill" value="e2b5b596"/>
+    <Option name="time stretch outline" value="63636396"/>
+    <Option name="automation line" value="44bc59ff"/>
+    <Option name="processor automation line" value="7aa3f9ff"/>
+    <Option name="control point fill" value="ffffff66"/>
+    <Option name="control point outline" value="ffffffaa"/>
+    <Option name="entered control point outline" value="ff0000ee"/>
+    <Option name="entered control point selected" value="ff3535ff"/>
+    <Option name="entered control point" value="ffffffaa"/>
+    <Option name="control point selected" value="00ff00ff"/>
+    <Option name="control point" value="ff0000ff"/>
+    <Option name="automation track fill" value="a0a0ce68"/>
+    <Option name="automation track outline" value="282828ff"/>
+    <Option name="crossfade editor base" value="282d49ff"/>
+    <Option name="crossfade editor line" value="000000ff"/>
+    <Option name="selected crossfade editor line" value="00dbdbff"/>
+    <Option name="crossfade editor line shading" value="00a0d154"/>
+    <Option name="crossfade editor point fill" value="00ff00ff"/>
+    <Option name="crossfade editor point outline" value="0000ffff"/>
+    <Option name="crossfade editor wave" value="ffffff28"/>
+    <Option name="selected crossfade editor wave" value="f9ea14a0"/>
+    <Option name="crossfade line" value="000000ff"/>
+    <Option name="active crossfade" value="e8ed3d77"/>
+    <Option name="inactive crossfade" value="e8ed3d77"/>
+    <Option name="location marker" value="c4f411ff"/>
+    <Option name="location range" value="497a59ff"/>
+    <Option name="location cd marker" value="1ee8c4ff"/>
+    <Option name="location loop" value="35964fff"/>
+    <Option name="location punch" value="7c3a3aff"/>
+    <Option name="verbose canvas cursor" value="f4f214bc"/>
+    <Option name="marker label" value="000000ff"/>
+    <Option name="marker bar separator" value="aaaaaa77"/>
+    <Option name="tempo bar" value="72727fff"/>
+    <Option name="meter bar" value="666672ff"/>
+    <Option name="marker bar" value="a1a1adff"/>
+    <Option name="cd marker bar" value="9898a3ff"/>
+    <Option name="range marker bar" value="7f7f8cff"/>
+    <Option name="transport marker bar" value="8c8c96ff"/>
+    <Option name="range drag bar rect" value="969696c6"/>
+    <Option name="range drag rect" value="82c696c6"/>
+    <Option name="transport drag rect" value="969696c6"/>
+    <Option name="marker drag line" value="004f00f9"/>
+    <Option name="transport loop rect" value="1e7728f9"/>
+    <Option name="transport punch rect" value="6d2828e5"/>
+    <Option name="punch line" value="a80000ff"/>
+    <Option name="zoom rect" value="c6d1b26d"/>
+    <Option name="rubber band rect" value="c6c6c659"/>
+    <Option name="entered gain line" value="dd6363ff"/>
+    <Option name="entered automation line" value="dd6363ff"/>
+    <Option name="entered marker" value="dd6363ff"/>
+    <Option name="meter marker" value="f2425bff"/>
+    <Option name="tempo marker" value="f2425bff"/>
+    <Option name="measure line beat" value="b5b5b576"/>
+    <Option name="measure line bar" value="d9d9d99c"/>
+    <Option name="ghost track base" value="44007c7f"/>
+    <Option name="ghost track wave" value="02fd004c"/>
+    <Option name="ghost track wave clip" value="ff000000"/>
+    <Option name="ghost track zero line" value="e500e566"/>
+    <Option name="image track" value="ddddd8ff"/>
+    <Option name="marker track" value="ddddd8ff"/>
+    <Option name="zero line" value="b5b5b5ff"/>
+    <Option name="gain line" value="00bc20ff"/>
+    <Option name="gain line inactive" value="9fbca4c5"/>
+    <Option name="recording rect" value="e5c6c6ff"/>
+    <Option name="selection rect" value="e8f4d377"/>
+    <Option name="selection" value="636363b2"/>
+    <Option name="vestigial frame" value="0000000f"/>
+    <Option name="time axis frame" value="0000000f"/>
+    <Option name="name highlight fill" value="0000ffff"/>
+    <Option name="name highlight outline" value="7c00ff96"/>
+    <Option name="frame handle" value="7c00ff96"/>
+    <Option name="trim handle locked" value="ea0f0f28"/>
+    <Option name="trim handle" value="1900ff44"/>
+    <Option name="edit point" value="0000ffff"/>
+    <Option name="play head" value="ff0000ff"/>
+    <Option name="meter fill min" value="33dd33ff"/>
+    <Option name="meter fill mid" value="eeee33ff"/>
+    <Option name="meter fill max" value="ee3333ff"/>
+    <Option name="meter fill clip" value="ff0000ff"/>
+    <Option name="midi select rect outline" value="5555ffff"/>
+    <Option name="midi select rect fill" value="8888ff88"/>
+    <Option name="midi note outline min" value="22ff22b0"/>
+    <Option name="midi note outline mid" value="ffff22b0"/>
+    <Option name="midi note outline max" value="ff2222b0"/>
+    <Option name="midi note fill min" value="33ee338a"/>
+    <Option name="midi note fill mid" value="eeee338a"/>
+    <Option name="midi note fill max" value="ee33338a"/>
+    <Option name="midi note selected outline" value="5566ffee"/>
+    <Option name="piano roll white" value="aa585865"/>
+    <Option name="piano roll black" value="88393b6b"/>
+    <Option name="piano roll black outline" value="b5b5b576"/>
+  </Canvas>
+</Ardour>
diff --git a/gtk2_ardour/ardour3_ui_light.rc.in b/gtk2_ardour/ardour3_ui_light.rc.in
new file mode 100644 (file)
index 0000000..e5cf578
--- /dev/null
@@ -0,0 +1,1561 @@
+#
+# This is the GTK style file for Ardour
+#
+
+style "very_small_text"
+{
+       font_name = "%FONT_SMALLER%"
+}
+
+style "small_text"
+{
+       font_name = "%FONT_SMALL%"
+}
+
+style "small_bold_text"
+{
+       font_name = "%FONT_BOLD_SMALL%"
+}
+
+style "medium_bold_text"
+{
+       font_name = "%FONT_BOLD_NORMAL%"
+}
+
+style "medium_text"
+{
+       font_name = "%FONT_NORMAL%"
+}
+
+style "red_medium_text" = "medium_text"
+{      
+       fg[NORMAL] = { 1.0, 0, 0 }
+       fg[ACTIVE] = { 1.0, 0, 0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+}
+
+
+style "large_text"
+{
+       font_name = "%FONT_LARGE%"
+}
+
+style "larger_bold_text"
+{
+       font_name = "%FONT_BOLD_BIGGER%"
+}
+
+style "plugin_name_text"
+{
+       font_name = "%FONT_BOLD_LARGER%"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+}
+
+style "plugin_maker_text"
+{
+       font_name = "%FONT_BOLD_BIGGER%"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+}
+
+style "automation_track_name"
+{
+       font_name = "%FONT_ITALIC_NORMAL%"
+}
+
+style "first_action_message" 
+{
+       font_name = "%FONT_HUGER%"
+}
+
+style "verbose_canvas_cursor"
+{
+       font_name = "%FONT_BOLD_LARGER%"
+}
+
+style "marker_text" 
+{
+       font_name = "%FONT_NORMAL%"
+}
+
+style "time_axis_view_item_name"
+{
+       font_name = "%FONT_SMALLER%"
+}
+
+style "default_base" = "medium_text"
+{
+  
+  GtkButton::default_border = { 0, 0, 0, 0 }
+  GtkButton::default_outside_border = { 0, 0, 0, 0 }
+  GtkButton::button_relief = GTK_RELIEF_NONE
+  GtkTreeView::vertical-padding = 0
+  GtkTreeView::horizontal-padding = 0
+  GtkTreeView::even-row-color = { 0.70, 0.70, 0.70 }
+  GtkTreeView::odd-row-color = { 0.64, 0.64, 0.64 }
+  
+  fg[NORMAL] = { 0.30, 0.30, 0.40 }    
+  fg[ACTIVE] = { 0.30, 0.30, 0.40 }    
+  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
+  fg[INSENSITIVE] = { 0.30, 0.30, 0.40 }       
+  fg[SELECTED] = { 0.30, 0.30, 0.40 }  
+  
+  bg[NORMAL] = { 0.80, 0.80, 0.80 }
+  bg[ACTIVE] = { 0.80, 0.80, 0.80 }
+  bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+  bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+  bg[SELECTED] = { 0.80, 0.80, 0.80 }
+  
+  text[NORMAL] = { 0.30, 0.30, 0.40 }
+  text[ACTIVE] = { 0.30, 0.30, 0.40 }
+  text[PRELIGHT] = { 0.30, 0.30, 0.40 }
+  text[INSENSITIVE] = { 0.30, 0.30, 0.40 }
+  text[SELECTED] = { 0, 0, 0 }
+  
+  base[ACTIVE]     = { 0.80, 0.80, 0.80 }
+  base[NORMAL]      =  { 0.80, 0.80, 0.80 }
+  base[PRELIGHT]     = { 0.90, 0.90, 0.90 }
+  base[INSENSITIVE]  = "#4c5159"
+  base[SELECTED]     = { 0.60, 0.60, 0.80 }
+
+  engine "clearlooks" 
+  {
+    menubarstyle      = 0       # 0 = flat, 1 = sunken, 2 = flat gradient
+    menuitemstyle     = 0       # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button)
+    listviewitemstyle = 0       # 0 = flat, 1 = 3d-ish (gradient)
+    progressbarstyle  = 1       # 0 = candy bar, 1 = fancy candy bar, 2 = flat
+  }
+}
+
+style "base_frame"
+{
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[NORMAL] = { 0.35, 0.35, 0.40 }
+}
+
+style "transport_base" = "medium_bold_text"
+{
+  bg[NORMAL] = { 0.10, 0.10, 0.10 }
+  bg[ACTIVE] = { 0, 0, 0 }
+  bg[PRELIGHT] = { 0, 0, 0 }
+  bg[INSENSITIVE] = { 0, 0, 0 }
+  bg[SELECTED] = { 0, 0, 0 }
+}
+/*
+style "black_mackie_menu_bar"
+{
+  font_name = "%FONT_BOLD_NORMAL%"
+  fg[NORMAL] = { 1.0, 1.0, 1.0 }
+  bg[NORMAL] = { 0, 0, 0 }
+}
+*/
+style "default_buttons_menus" 
+{
+  font_name = "%FONT_NORMAL%"
+  fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+  
+  bg[NORMAL] = { 0.80, 0.80, 0.80 }
+  bg[ACTIVE] = "#565690"
+  bg[PRELIGHT] = { 0.70, 0.70, 0.90 }
+  bg[INSENSITIVE] = { 0.70, 0.70, 0.90 }
+  bg[SELECTED] = { 0.70, 0.70, 0.90 }
+}
+
+style "very_small_button" = "default_buttons_menus"
+{
+       font_name = "%FONT_SMALLER%"
+       ythickness = 0
+       xthickness = 0
+}
+
+style "small_button" = "default_buttons_menus"
+{
+}
+
+style "very_small_red_active_and_selected_button" = "very_small_button"
+{
+       bg[ACTIVE] = { 1.0, 0, 0}
+       bg[SELECTED] = { 1.0, 0, 0}
+}
+
+style "small_red_active_and_selected_button" = "small_button"
+{
+       fg[ACTIVE] = { 0, 0, 0 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+       bg[SELECTED] = { 1.0, 0, 0}
+}
+
+style "gain_fader"
+{
+       bg[NORMAL] =   { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] =   { 0.80, 0.80, 0.80 }
+}
+
+
+style "track_rec_enable_button" = "small_button"
+{
+}
+
+style "track_rec_enable_button_active" = "small_button"
+{
+       fg[SELECTED] = { 0.0, 0.0, 0.0 }
+       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
+       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
+       fg[NORMAL] = { 0.0, 0.0, 0.0 }
+
+       bg[NORMAL] =   { 1.0, 0.0, 0.0 }
+       bg[ACTIVE] =   { 1.0, 0.0, 0.0 }
+       bg[SELECTED] =   { 1.0, 0.0, 0.0 }
+       bg[PRELIGHT] =   { 1.0, 0.0, 0.0 }
+}
+
+style "track_rec_enable_button_alternate" = "small_button"
+{
+       fg[SELECTED] = { 0.0, 0.0, 0.0 }
+       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
+       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
+       fg[NORMAL] = { 0.0, 0.0, 0.0 }
+
+       bg[NORMAL] =   { 0.91, 0.68, 0.68}
+       bg[ACTIVE] =   { 0.91, 0.68, 0.68}
+       bg[SELECTED] =   { 0.91, 0.68, 0.68}
+       bg[PRELIGHT] =   { 0.91, 0.68, 0.68}
+}
+
+style "mixer_track_rec_enable_button" = "track_rec_enable_button"
+{
+       font_name = "%FONT_SMALLER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_track_rec_enable_button_alternate" = "track_rec_enable_button_alternate"
+{
+       font_name = "%FONT_SMALLER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_track_rec_enable_button_active" = "track_rec_enable_button_active"
+{
+       font_name = "%FONT_SMALLER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "solo_button" = "small_button"
+{
+}
+
+style "solo_button_alternate" = "small_button"
+{
+       bg[NORMAL] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[ACTIVE] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[SELECTED] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[PRELIGHT] = { 0.19, 0.97, 0.69 } # solo-safe
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+
+style "solo_button_active" = "small_button"
+{
+       bg[NORMAL] = { 0.66, 0.97, 0.19 }   # solo
+       bg[ACTIVE] = { 0.66, 0.97, 0.19 }   # solo
+       bg[SELECTED] = { 0.66, 0.97, 0.19 }   # solo
+       bg[PRELIGHT] = { 0.66, 0.97, 0.19 }   # solo
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mixer_solo_button" = "solo_button"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_solo_button_alternate" = "solo_button_alternate"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+style "mixer_solo_button_active" = "solo_button_active"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+
+style "mute_button" = "small_button"
+{
+}
+
+style "mute_button_alternate" = "small_button"
+{
+       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
+       bg[NORMAL] = { 1.0, 0.98, 0.53 }
+       bg[SELECTED] = { 1.0, 0.98, 0.53 }
+       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
+
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mute_button_active" = "small_button"
+{
+       bg[NORMAL] = { 0.90, 0.89, 0.73 }
+       bg[ACTIVE] = { 0.90, 0.89, 0.73 }
+       bg[PRELIGHT] = { 0.90, 0.89, 0.73 }
+       bg[SELECTED] = { 0.90, 0.89, 0.73 }
+
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mixer_mute_button" = "mute_button"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button_alternate" = "mute_button_alternate"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button_active" = "mute_button_active"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "multiline_combo" = "small_button"
+{
+       font_name = "%FONT_NORMAL%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button" = "mute_button"
+{
+       font_name = "%FONT_SMALLERER%"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "track_loop_button" = "small_button"
+{
+       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
+       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
+
+}
+
+style "mixer_red_active_button" = "very_small_button"
+{
+       fg[ACTIVE] = { 0, 1.0, 1.0 }
+       bg[ACTIVE] = { 0.7, 0, 0 }
+
+       base[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+}
+
+style "time_button" = "default_buttons_menus"
+{
+       font_name = "%FONT_NORMAL%"
+}
+
+style "transport_button"
+{
+}
+
+style "transport_button_active"
+{
+       bg[NORMAL] = { 0.50, 1.0, 0.50 }
+       bg[ACTIVE] = { 0.50, 1.0, 0.50 }
+       bg[SELECTED] = { 0.50, 1.0, 0.50 }
+       bg[PRELIGHT] = { 0.50, 1.0, 0.50 }
+
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "transport_rec_button"
+{
+}
+
+style "transport_rec_button_active"
+{
+       bg[ACTIVE] = { 1.0, 0, 0 }
+       bg[NORMAL] = { 1.0, 0, 0 }
+       bg[SELECTED] = { 1.0, 0, 0 }
+       bg[PRELIGHT] = { 1.0, 0, 0 }
+}
+
+style "transport_rec_button_alternate"
+{
+       bg[PRELIGHT] = { 0.91, 0.68, 0.68 }
+       bg[NORMAL] = { 0.91, 0.68, 0.68 }
+       bg[SELECTED] = { 0.91, 0.68, 0.68 }
+       bg[ACTIVE] = { 0.91, 0.68, 0.68 }
+}
+
+style "shuttle_control" = "very_small_text"
+{
+       fg[NORMAL] = { 0.85, 0.92, 0.98 }
+       fg[ACTIVE] = { 0.85, 0.92, 0.98 }
+       fg[PRELIGHT] = { 0.85, 0.92, 0.98 }
+       fg[SELECTED] = { 0.85, 0.92, 0.98 }
+       fg[INSENSITIVE] = { 0.85, 0.92, 0.98 }
+
+       bg[NORMAL] = { 0.26, 0.26, 0.31 }
+       bg[PRELIGHT] = { 0.26, 0.26, 0.31 }
+       bg[INSENSITIVE] = { 0.26, 0.26, 0.31 }
+       bg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       bg[SELECTED] = { 1.0, 0.04, 0.04 }
+}
+
+style "ardour_adjusters" = "default_buttons_menus"
+{
+       bg[NORMAL] = { 0.60, 0.60, 0.60 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.06, 0.06, 0.06 }
+}
+
+style "editor_hscrollbar" = "ardour_adjusters"
+{
+       #
+       # special case: we want this scrollbar to be as tall as the
+       # zoom focus selector combobox. scrollbars don't expand to
+        # fill the space available to them, so we have to explicitly
+       # make it bigger.
+       # 
+       GtkRange::slider_width = 27
+       GtkScrollbar::slider_width = 27
+}
+
+style "ardour_progressbars" = "default_buttons_menus"
+{ 
+  bg[NORMAL] = { 0, 0, 0 }
+  bg[PRELIGHT] = { 0.00, 0.36, 0.40 }
+}
+
+style "preferences"  = "default_base"
+{
+       font_name = "%FONT_NORMAL%"
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "option_entry"  = "default_base"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       
+       base[INSENSITIVE] = { 0.07, 0.07, 0.12 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       bg[ACTIVE] = { 0.35, 0.35, 0.40 }
+}
+
+style "red_when_active" = "medium_text"
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+}
+
+style "xrun_warn"  
+{
+       font_name = "%FONT_BOLD_LARGE%"
+
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       text[NORMAL] = { 1.0, 1.0, 1.0 }
+       text[ACTIVE] = { 1.0, 1.0, 1.0 }
+       base[NORMAL] = { 0.09, 0.48, 0.46 }
+       base[ACTIVE] = { 0.09, 0.48, 0.46 }
+       bg[NORMAL] = { 1.0, 0.48, 0.46 }
+       bg[ACTIVE] = { 0.09, 1.0, 0.46 }
+}
+/*
+style "menu_bar_base" = "default_base"
+{
+       bg[NORMAL] = { 0.2, 0.2, 0.3 }
+       bg[ACTIVE] = { 0, 0, 0 }
+       bg[PRELIGHT] = { 0, 0, 0 }
+       bg[INSENSITIVE] = { 0, 0, 0 }
+       bg[SELECTED] = { 0, 0, 0 }
+}
+*/
+style "fatal_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 1.0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "error_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "info_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "warning_message" = "medium_text"
+{
+   fg[ACTIVE] = { 0.30,0.30, 1.0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0, 0, 0 }
+   bg[NORMAL] = { 0, 0, 0 }
+   base[ACTIVE] = { 0, 0, 0 }
+   base[NORMAL] = { 0, 0, 0 }
+}
+
+style "medium_entry" = "medium_text"
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+       
+       bg[NORMAL] = { 0.70, 0.70, 0.70 }
+       
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+}
+
+style "medium_entry_noselection_fg" = "medium_entry"
+{
+       fg[SELECTED] = { 0.50, 1.0, 0.50 }
+}
+
+style "medium_entry_noselection_bg" = "medium_entry"
+{
+       bg[SELECTED] = { 1.0, 1.0, 1.0 }
+}
+
+style "medium_bold_entry"  = "medium_bold_text"
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+       
+       bg[NORMAL] = { 0.70, 0.70, 0.70 }
+       
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+}
+
+style "small_entry" = "small_text"
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 1.0, 0 }
+       fg[SELECTED] = { 0, 1.0, 0 }
+       text[NORMAL] = { 0, 0, 0 }
+       text[ACTIVE] = { 0, 1.0, 0 }
+       text[SELECTED] = { 0, 1.0, 0 }
+       bg[NORMAL] = { 0.70, 0.70, 0.70 }
+       bg[SELECTED] = { 0.70, 0.70, 0.70 }
+       bg[SELECTED] = { 0.70, 0.70, 0.70 }
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+}
+
+style "red_active_small_entry" = "small_entry"
+{
+       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+}
+
+style "small_bold_entry" = "small_bold_text"
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+       
+       bg[NORMAL] = { 0.70, 0.70, 0.70 }
+       
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+}
+
+style "small_red_on_black_entry"  = "small_bold_text"
+{
+       fg[NORMAL] = { 1.0, 0, 0 }
+       fg[ACTIVE] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
+}
+
+style "non_recording_big_clock_display" = "medium_entry"
+{
+       font_name = "%FONT_MASSIVE%"
+
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       fg[PRELIGHT] = { 1.0, 0, 0.0 }
+       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
+       
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.7, 0.0, 0.0 }  
+}
+
+style "recording_big_clock_display" = "non_recording_big_clock_display"
+{
+       fg[NORMAL] = { 1.0, 0, 0 }
+}
+
+style "transport_clock_display"
+{
+       font_name = "%FONT_BOLD_BIGGER%"
+       
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       fg[PRELIGHT] = { 1.0, 0, 0.0 }
+       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
+       
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
+}
+
+style "transport_clock_display_delta" = "transport_clock_display"
+{
+       fg[NORMAL] = { 0.30, 0.30, 1.0 }
+}
+
+style "tempo_meter_clock_display"
+{
+       font_name = "%FONT_SMALLER%"
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0.0, 0.48, 1.0 }
+       base[ACTIVE] = { 0.09, 0.98, 0.46 }
+       bg[NORMAL] = { 0.0, 0.48, 1.0 }
+       bg[ACTIVE] = { 0.09, 0.98, 0.46 }
+}
+
+style "default_clock_display" = "medium text"
+{
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       bg[NORMAL] = { 0, 0, 0 }
+       bg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "editor_time_ruler" = "small_text"
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.74, 0.74, 0.77 }
+}
+
+style "audio_bus_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0, 0, 0 }     
+  bg[NORMAL] = { 0.65, 0.65, 0.65 }    
+}
+
+style "audio_track_base" = "default_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0.30, 0.30, 0.35 }    
+  bg[NORMAL] = { 0.70, 0.70, 0.70 }
+  bg[ACTIVE] = { 0.80, 0.80, 0.80 }    
+  bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+  bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+  bg[SELECTED] = { 0.80, 0.80, 0.80 }
+}
+
+style "midi_bus_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
+  #bg[NORMAL] = {0, 0.36, 0.40 }
+  bg[NORMAL] = "#444466"       
+}
+
+style "midi_track_base" = "default_base"
+{
+  font_name = "%FONT_SMALLER%"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  bg[NORMAL] = { 0.48, 0.30, 0.32 }
+  bg[ACTIVE] = { 0.70, 0.70, 0.80 }    
+  bg[PRELIGHT] = { 0.70, 0.70, 0.80 }
+  bg[INSENSITIVE] = { 0.70, 0.70, 0.80 }
+  bg[SELECTED] = { 0.70, 0.70, 0.80 } 
+}
+
+style "track_controls_inactive" 
+{
+       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
+       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
+       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
+       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
+       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
+
+       #font_name = "sans 18"
+       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
+}
+
+style "audio_track_metrics" = "audio_track_base"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "audio_bus_metrics" = "audio_bus_base"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "audio_track_metrics_inactive" = "track_controls_inactive"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "audio_bus_metrics_inactive" = "track_controls_inactive"
+{
+       font_name = "%FONT_TINY%"
+}
+
+style "track_name_display"
+{
+       font_name = "%FONT_NORMAL%"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
+
+       base[NORMAL] = { 0.80, 0.80, 0.80 }
+       base[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
+}
+
+style "active_track_name_display"
+{
+       font_name = "%FONT_NORMAL%"
+       text[NORMAL] = { 0.26, 0.26, 0.26 }
+       base[NORMAL] = { 0.89, 0.89, 0.89 }
+}
+
+style "track_separator"
+{
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+}
+
+#
+# Track edit groups. These styles define
+# the colors that the "edit" button will
+# use as a track is moved from
+# track edit group to track edit group.
+# There are 8 edit groups. Edit group 0
+# is used for tracks that are not editable, 
+# so we leave its style to the default.
+#
+
+style "edit_group_0"
+
+{
+       bg[ACTIVE] = { 1.0, 0.65, 0.13 }
+       bg[NORMAL] = { 0.31, 0.31, 0.31 }
+       fg[NORMAL] = { 0.82, 0.91, 0.99 }
+       fg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "edit_group_1" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "edit_group_2" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "edit_group_3" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "treeview_parent_node"
+{
+       # specifies *just* the color used for whole file rows when not selected
+       fg[NORMAL] = { 0.0, 0.0, 1.0 }
+}
+
+style "treeview_display" = "small_bold_text"
+{
+       # expander arrow border and DnD "icon" text
+       fg[NORMAL] = { 0, 0, 0 } 
+
+       # background with no rows or no selection, plus
+       # expander arrow core and DnD "icon" background
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+
+       # selected row bg when window does not have focus (including during DnD)
+       base[ACTIVE] = { 0.0, 0.60, 0.60 }    
+
+       # selected row bg when window has focus
+       base[SELECTED] = { 0, 0.75, 0.75 }
+
+       # row text when in normal state and not a parent
+       text[NORMAL] = { 0, 0, 0 }
+
+       # selected row text with window focus
+       text[SELECTED] = { 0, 1.0, 1.0 }  
+
+       # selected row text without window focus (including during DnD)
+       text[ACTIVE] = { 0, 1.0, 1.0 }  
+}
+
+style "main_canvas_area"
+{
+       bg[NORMAL] = { 0.40, 0.40, 0.40 }
+       bg[ACTIVE] = { 0.40, 0.40, 0.40 }
+       bg[INSENSITIVE] = { 0.40, 0.40, 0.40 }
+       bg[SELECTED] = { 0.40, 0.40, 0.40 }
+       bg[PRELIGHT] = { 0.40, 0.40, 0.40 }
+}
+
+style "track_controls_inactive"
+{
+       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
+       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
+       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
+       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
+       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
+
+       font_name = "%FONT_LARGE%"
+       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
+}
+
+style "edit_controls_base_selected"
+{
+       bg[NORMAL] = { 0.60, 0.54, 0.60 }
+       bg[ACTIVE] = { 0.60, 0.54, 0.60 }
+       bg[INSENSITIVE] = { 0.60, 0.54, 0.60 }
+       bg[SELECTED] = { 0.60, 0.54, 0.60 }
+       bg[PRELIGHT] = { 0.60, 0.54, 0.60 }
+}
+
+style "automation_track_controls_base"
+{
+       bg[NORMAL] = { 0.22, 0.22, 0.29 }
+       bg[ACTIVE] = { 0.22, 0.22, 0.29 }
+       bg[INSENSITIVE] = { 0.22, 0.22, 0.29 }
+       bg[SELECTED] = { 0.22, 0.22, 0.29 }
+       bg[PRELIGHT] = { 0.22, 0.22, 0.29 }
+}
+
+# Plugin Editors
+style "plugin_slider" 
+{
+       font_name ="%FONT_BOLD_BIG%"
+
+       # the slider itself. the inactive part is INSENSITIVE,
+       # the active part is something else.
+
+       fg[NORMAL] = { 0.37, 0.43, 0.52 }
+       fg[ACTIVE] = { 0.37, 0.43, 0.52 }
+       fg[INSENSITIVE] = {0.35, 0.35, 0.40 } # matches default_base
+       fg[SELECTED] = { 0.37, 0.43, 0.52 }
+       fg[PRELIGHT] = { 0.37, 0.43, 0.52 }
+
+       # draws the outer rectangle around the slider
+
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[INSENSITIVE] = {0.80, 0.80, 0.80 }
+       bg[SELECTED] = { 0.80, 0.80, 0.80 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+
+       # the numeric display
+
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.80, 0.80, 0.80 }
+       text[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       text[SELECTED] = { 0.80, 0.80, 0.80 }
+       text[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "track_list_display" = "small_bold_text"
+{
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.3, 0.3, 0.3 }
+       text[INSENSITIVE] = { 0, 0, 0 }
+       text[SELECTED] = { 0.8, 0.8, 0.8 }
+
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.70, 0.70, 0.70 }
+       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+}
+
+style "inspector_track_list_display" = "track_list_display"
+{
+       text[ACTIVE] = { 0.8, 0.8, 0.8 }
+
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.2, 0.2, 0.2 }
+       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.3, 0.3, 0.4 }
+}
+
+style "redirect_list_display"
+{
+       GtkTreeView::horizontal-separator = 0
+       GtkTreeView::vertical-separator = 0
+
+       font_name = "%FONT_SMALL%"
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.70, 0.70, 0.70 }
+       text[INSENSITIVE] = { 0, 0, 0 }
+       text[SELECTED] = { 0.9, 0.3, 0.3 }
+
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.70, 0.70, 0.70 }
+       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+
+       # these two are explicitly used by the cell renderer for the
+        # text
+
+       fg[NORMAL] = { 0.5, 0.5, 0.5 }  # used for inactive
+       fg[ACTIVE] = { 0, 0, 0 }  # used for active
+}
+
+style "inspector_redirect_list_display" = "redirect_list_display"
+{
+       base[SELECTED] = { 0.3, 0.3, 0.3 }
+}
+
+# MixerPanZone:
+#
+# the NORMAL fg color is used for the pan puck
+# the ACTIVE fg color is used for the speaker boxes
+
+style "pan_zone" = "default_base"
+{
+       fg[NORMAL] = { 0.34, 0.95, 0.92 }
+       fg[ACTIVE] = { 0.95, 0.48, 0.11 }
+}
+
+style "paler_red_when_active" = "medium_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.31, 0.31, 0.31 }
+       bg[PRELIGHT] = { 0.31, 0.31, 0.31 }
+
+       fg[ACTIVE] = { 0.36, 0.46, 0.28 }
+       bg[ACTIVE] = { 1.00, 0.59, 0.59}
+}
+
+style "peak_display_peaked_entry" = "small_text"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+
+       bg[NORMAL] = {0.9, 0.0, 0.0 }   
+       bg[ACTIVE] = { 0.9, 0.0, 0.0 }  
+       bg[PRELIGHT] = { 0.9, 0.0, 0.0 }        
+       bg[INSENSITIVE] = { 0.9, 0.0, 0.0 }     
+       bg[SELECTED] = { 0.9, 0.0, 0.0 }        
+       base[NORMAL] = { 0.9, 0.0, 0.0 }        
+       base[ACTIVE] = { 0.9, 0.0, 0.0 }        
+       base[PRELIGHT] = { 0.9, 0.0, 0.0 }      
+       base[INSENSITIVE] = { 0.9, 0.0, 0.0 }   
+       base[SELECTED] = { 0.9, 0.0, 0.0 }      
+}
+
+style "selected_strip_frame"
+{
+       fg[NORMAL] = { 0.74, 0.42, 0.47 }
+       bg[NORMAL] = { 0.79, 0.28, 0.18 }
+}
+
+style "flashing_alert" = "very_small_text"
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+}
+
+style "selected_io_selector_port_list" = "medium_bold_text"
+{
+
+       GtkTreeView::even-row-color = { 0.70, 0.70, 0.70 }
+       GtkTreeView::odd-row-color = { 0.70, 0.70, 0.70 }
+
+# fg is used to color the fg (text) of the column header button
+
+       fg[NORMAL] = { 0.30, 0.30, 0.35 }
+       fg[SELECTED] = { 0.30, 0.30, 0.35 }
+       fg[ACTIVE] = { 0.30, 0.30, 0.35 }
+       fg[PRELIGHT] = { 0.30, 0.30, 0.35 }
+       fg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
+
+# bg is used used to color the background of the column header button
+
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       bg[SELECTED] = { 0.80, 0.80, 0.80 }
+
+# text is used to color the treeview row text
+
+       text[NORMAL] = { 0.30, 0.30, 0.35 }
+       text[SELECTED] = { 0.30, 0.30, 0.35 }
+
+# base is used to color a treeview with no rows
+
+       base[NORMAL] = { 0.70, 0.70, 0.70 }
+       base[ACTIVE] = { 0.70, 0.70, 0.70 }
+       base[PRELIGHT] = { 0.70, 0.70, 0.70 }
+       base[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+
+}
+
+style "io_selector_port_list" = "medium_text"
+{
+       GtkTreeView::even-row-color = { 0.70, 0.70, 0.70 }
+       GtkTreeView::odd-row-color = { 0.70, 0.70, 0.70 }
+# fg is used to color the fg (text) of the column header button
+
+       fg[NORMAL] = { 0.30, 0.30, 0.35 }
+       fg[SELECTED] = { 0.30, 0.30, 0.35 }
+       fg[ACTIVE] = { 0.30, 0.30, 0.35 }
+       fg[PRELIGHT] = { 0.30, 0.30, 0.35 }
+       fg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
+
+# bg is used used to color the background of the column header button
+
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       bg[SELECTED] = { 0.80, 0.80, 0.80 }
+
+# text is used to color the treeview row text
+
+       text[NORMAL] = { 0.30, 0.30, 0.35 }
+       text[SELECTED] = { 0.30, 0.30, 0.35 }
+
+# base is used to color a treeview with no rows
+
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+       base[ACTIVE] = { 0.20, 0.20, 0.25 }
+       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
+       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
+       base[SELECTED] = { 0.20, 0.20, 0.25 }
+}
+
+style "io_selector_notebook" = "default_base"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+        font_name ="%FONT_BOLD_NORMAL%"
+}
+
+style "tearoff_arrow" = "medium_bold_entry"
+{
+       fg[NORMAL] = { 0.30, 0.30, 0.30 }
+       fg[PRELIGHT] = { 0.30, 0.30, 0.30 }
+       bg[NORMAL] = { 0.30, 0.30, 0.30 }
+       bg[PRELIGHT] = { 0.30, 0.30, 0.30 }
+}
+
+style "location_row_button" = "default_buttons_menus"
+{
+       font_name = "%FONT_SMALL%"
+}
+
+style "location_rows_clock" = "default_clock_display"
+{
+       font_name = "%FONT_BIG%"
+}
+
+style "pan_slider" 
+{
+       font_name = "%FONT_NORMAL%"
+
+       fg[NORMAL] = { 0.22, 0.73, 0.22 }
+       fg[ACTIVE] = { 0.22, 0.73, 0.22 }
+       fg[INSENSITIVE] = {0.22, 0.53, 0.22 } 
+       fg[SELECTED] = { 0.67, 0.23, 0.22 }
+       fg[PRELIGHT] = { 0.67, 0.23, 0.22 }
+
+       bg[NORMAL] = { 0.05, 0.05, 0.05 }
+       bg[ACTIVE] = { 0, 0, 0 }
+       bg[INSENSITIVE] = {0.12, 0.19, 0.25 } 
+       bg[SELECTED] = { 0, 0, 0 }
+       bg[PRELIGHT] = { 0, 0, 0 }
+
+       text[NORMAL] = { 0.70, 0.70, 0.70 }
+       text[ACTIVE] = { 0.70, 0.70, 0.70 }
+       text[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+       text[SELECTED] = { 0.70, 0.70, 0.70 }
+       text[PRELIGHT] = { 0.70, 0.70, 0.70 }
+
+       # used to draw the triangular indicators 
+
+       base[NORMAL] = { 0.80, 0.80, 0.80 }
+       base[ACTIVE] =  { 0.80, 0.80, 0.80 }
+       base[INSENSITIVE] = {0.6, 0.6, 0.6 }
+       base[SELECTED] = { 0.80, 0.80, 0.80 }
+       base[PRELIGHT] = { 0.80, 0.80, 0.80 }
+
+}
+
+style "ardour_button" ="default_buttons_menus"
+{
+       xthickness = 1
+       ythickness = 1
+}
+
+#---------------------------------------------------------------
+
+class "GtkWidget" style:highest "default_base"
+class "GtkScrollbar" style:highest "ardour_adjusters"
+class "GtkLabel" style:highest "default_buttons_menus"
+class "GtkButton" style:highest "ardour_button"
+class "GtkArrow" style:highest "tearoff_arrow"
+class "GtkProgressBar" style:highest "ardour_progressbars"
+
+widget "*FirstActionMessage" style:highest "first_action_message"
+widget "*VerboseCanvasCursor" style:highest "verbose_canvas_cursor"
+widget "*MarkerText" style:highest "marker_text"
+widget "*TimeAxisViewItemName*" style:highest "time_axis_view_item_name"
+#widget "*ExportProgress" style:highest "default_buttons_menus"
+widget "*ExportFileLabel" style:highest "small_bold_text"
+widget "*ExportFormatLabel" style:highest "medium_bold_text"
+widget "*ExportHeader" style:highest "small_bold_text"
+widget "*ExportFileDisplay" style:highest "medium_entry"
+widget "*ExportFormatDisplay" style:highest "medium_entry"
+widget "*ExportCheckbox" style:highest "small_entry"
+widget "*ExportTrackSelector*" style:highest "medium_entry_noselection_bg"
+widget "*EditModeSelector" style:highest "medium_bold_entry"
+widget "*SnapTypeSelector" style:highest "medium_bold_entry"
+widget "*SnapModeSelector" style:highest "medium_bold_entry"
+widget "*ZoomFocusSelector" style:highest "medium_bold_entry"
+widget "*ArdourContextMenu*" style:highest "default_buttons_menus"
+widget "*EditGroupTitleButton*" style:highest "default_buttons_menus"
+widget "*MixerGroupTitleButton*" style:highest "default_buttons_menus"
+widget "*ErrorLogCloseButton" style:highest "default_buttons_menus"
+widget "*EditorGTKButton*" style:highest "default_buttons_menus" 
+widget "*ToolbarButton" style:highest "default_buttons_menus"
+widget "*ToolbarButton*" style:highest "default_buttons_menus"
+widget "*CrossfadeEditButton" style:highest "default_buttons_menus"
+widget "*CrossfadeEditButton*" style:highest "default_buttons_menus"
+widget "*TrackHistoryButton*" style:highest "default_buttons_menus"
+widget "*TrackSizeButton*" style:highest "default_buttons_menus"
+widget "*TrackPlaylistButton*" style:highest "default_buttons_menus"
+widget "*TrackAutomationButton*" style:highest "default_buttons_menus"
+widget "*TrackGroupButton*" style:highest "default_buttons_menus"
+widget "*TrackMixButton*" style:highest "default_buttons_menus"
+widget "*TrackVisualButton*" style:highest "default_buttons_menus"
+widget "*TrackRemoveButton*" style:highest "default_buttons_menus"
+widget "*BaseButton" style:highest "default_buttons_menus"
+widget "*TakeButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerWidthButton" style:highest "default_buttons_menus"
+widget "*MixerHideButton" style:highest "default_buttons_menus"
+widget "*MixerSendButton" style:highest "default_buttons_menus"
+widget "*MixerSendButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerSendSwitch" style:highest "default_buttons_menus"
+widget "*MixerInsertButton" style:highest "default_buttons_menus"
+widget "*MixerInsertButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerInsertSwitch" style:highest "default_buttons_menus"
+widget "*MixerMonitorInputButton*" style:highest "very_small_button"
+widget "*MixerMonitorInputButton.*" style:highest "very_small_button"
+widget "*MixerIOButton" style:highest "very_small_button"
+widget "*MixerIOButtonLabel" style:highest "very_small_button"
+widget "*AddRouteDialogSpinner" style:highest "ardour_adjusters"
+widget "*AddRouteDialogRadioButton*" style:highest "preferences"
+widget "*OptionsNotebook" style:highest "preferences"
+widget "*OptionEditorToggleButton*" style:highest "preferences"
+widget "*OptionsLabel" style:highest "preferences"
+widget "*OptionEditorAuditionerLabel" style:highest "preferences"
+widget "*OptionsEntry" style:highest "option_entry"
+widget "*InspectorNotebook" style:highest "preferences"
+widget "*NewSessionDialog" style:highest "preferences"
+widget "*NewSessionDialogButton*" style:highest "preferences"
+widget "*MixerSendSwitch*" style:highest "very_small_red_active_and_selected_button"
+widget "*OptionEditorToggleButton" style:highest "small_red_active_and_selected_button"
+widget "*NewSessionDialogButton" style:highest "small_red_active_and_selected_button"
+widget "*RecordEnableButton" style:highest "track_rec_enable_button"
+widget "*RecordEnableButton-active" style:highest "track_rec_enable_button_active"
+widget "*RecordEnableButton-alternate" style:highest "track_rec_enable_button_alternate"
+widget "*MixerRecordEnableButton" style:highest "mixer_track_rec_enable_button"
+widget "*MixerRecordEnableButton-active" style:highest "mixer_track_rec_enable_button_active"
+widget "*MixerRecordEnableButton-alternate" style:highest "mixer_track_rec_enable_button_alternate"
+widget "*MuteButton" style:highest "mute_button"
+widget "*MuteButton-alternate" style:highest "mute_button_alternate"
+widget "*MuteButton-active" style:highest "mute_button_active"
+widget "*MixerMuteButton" style:highest "mixer_mute_button"
+widget "*MixerMuteButton-alternate" style:highest "mixer_mute_button_alternate"
+widget "*MixerMuteButton-active" style:highest "mixer_mute_button_active"
+widget "*SoloButton" style:highest "solo_button"
+widget "*SoloButton-alternate" style:highest "solo_button_alternate"
+widget "*SoloButton-active" style:highest "solo_button_active"
+widget "*MixerSoloButton" style:highest "mixer_solo_button"
+widget "*MixerSoloButton-alternate" style:highest "mixer_solo_button_alternate"
+widget "*MixerSoloButton-active" style:highest "mixer_solo_button_active"
+widget "*TrackLoopButton*" style:highest "track_loop_button"
+widget "*PanAutomationLineSelector*" style:highest "multiline_combo"
+widget "*EditorTimeButton*" style:highest "time_button"
+widget "*MixerPhaseInvertButton*" style:highest "very_small_button"
+widget "*MixerPhaseInvertButton.*" style:highest "very_small_button"
+widget "*MixerAutomationRecordingButton*" style:highest "very_small_button"
+widget "*MixerAutomationRecordingButton.*" style:highest "very_small_button"
+widget "*MixerAutomationModeButton*" style:highest "very_small_button"
+widget "*MixerAutomationModeButton.*" style:highest "very_small_button"
+widget "*MixerAutomationPlaybackButton*" style:highest "very_small_button"
+widget "*MixerAutomationPlaybackButton.*" style:highest "very_small_button"
+widget "*MixerNameButton" style:highest "very_small_button"
+widget "*MixerNameButtonLabel" style:highest "very_small_button"
+widget "*MixerGroupButton" style:highest "very_small_button"
+widget "*MixerGroupButtonLabel" style:highest "very_small_button"
+widget "*MixerCommentButton" style:highest "very_small_button"
+widget "*MixerCommentButton*" style:highest "very_small_button"
+widget "*EditGroupButton" style:highest "very_small_button"
+widget "*EditGroupButtonLabel" style:highest "very_small_button"
+widget "*TransportButton" style:highest "transport_rec_button"
+widget "*TransportButton-active" style:highest "transport_button_active"
+widget "*ShuttleButton" style:highest "transport_button"
+widget "*ShuttleButton*" style:highest "transport_button"
+widget "*ShuttleDisplay" style:highest "transport_button"
+widget "*ShuttleDisplay*" style:highest "transport_button"
+widget "*ShuttleControl" style:highest "shuttle_control"
+widget "*TransportRecButton" style:highest "transport_rec_button"
+widget "*TransportRecButton*" style:highest "transport_rec_button"
+widget "*TransportRecButton-active" style:highest "transport_rec_button_active"
+widget "*TransportRecButton-active*" style:highest "transport_rec_button_active"
+widget "*TransportRecButton-alternate" style:highest "transport_rec_button_alternate"
+widget "*TransportRecButton-alternate*" style:highest "transport_rec_button_alternate"
+widget "*TransportRecButton*" style:highest "transport_rec_button"
+widget "*RecordingXrunWarningWindow" style:highest "xrun_warn"
+widget "*RecordingXrunWarningWindow*" style:highest "xrun_warn"
+/*widget "*MainMenuBar" style:highest "menu_bar_base"*/
+widget "*ErrorMessage" style:highest "error_message"
+widget "*FatalMessage" style:highest "fatal_message"
+widget "*InfoMessage" style:highest "info_message"
+widget "*WarningMessage" style:highest "warning_message"
+widget "*BigClockNonRecording" style:highest "non_recording_big_clock_display"
+widget "*BigClockRecording" style:highest "recording_big_clock_display"
+widget "*TransportClockDisplay" style:highest "transport_clock_display"
+widget "*SecondaryClockDisplay" style:highest "transport_clock_display"
+widget "*TransportClockDisplayDelta" style:highest "transport_clock_display_delta"
+widget "*SecondaryClockDisplayDelta" style:highest "transport_clock_display_delta"
+widget "*AudioClockFramesUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockFramesLowerInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockSMPTEUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockSMPTELowerInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockBBTUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockBBTLowerInfo" style:highest "tempo_meter_clock_display"
+widget "*SelectionStartClock" style:highest "default_clock_display"
+widget "*SelectionEndClock" style:highest "default_clock_display"
+widget "*EditPointClock" style:highest "default_clock_display"
+widget "*PreRollClock" style:highest "default_clock_display"
+widget "*PostRollClock" style:highest "default_clock_display"
+widget "*NudgeClock" style:highest "default_clock_display"
+widget "*ZoomRangeClock" style:highest "default_clock_display"
+widget "*SMPTEOffsetClock" style:highest "default_clock_display"
+widget "*TransportLabel" style:highest "small_bold_text"
+widget "*TakeLabel" style:highest "small_bold_text"
+widget "*LocationLabel" style:highest "small_bold_text"
+widget "*WipeLabel" style:highest "small_bold_text"
+widget "*TakeTagLabel" style:highest "small_bold_text"
+widget "*ToolBarLabel" style:highest "small_bold_text"
+widget "*EditorDisplayLabel" style:highest "small_bold_text"
+widget "*NewSessionLabel" style:highest "large_text"
+widget "*GlobalButtonLabel" style:highest "default_buttons_menus"
+widget "*ClickButton" style:highest "medium_entry"
+widget "*RegionNameDisplay" style:highest "medium_entry"
+widget "*PluginDisplay" style:highest "medium_entry"
+widget "*SelectionDisplay" style:highest "medium_entry"
+widget "*HistorySelector" style:highest "medium_entry"
+widget "*LocationSelector" style:highest "medium_entry"
+widget "*TakeSelector" style:highest "medium_entry"
+widget "*RegionSelector" style:highest "medium_entry"
+widget "*SMPTERuler" style:highest "editor_time_ruler"
+widget "*BBTRuler" style:highest "editor_time_ruler"
+widget "*FramesRuler" style:highest "editor_time_ruler"
+widget "*MinSecRuler" style:highest "editor_time_ruler"
+widget "*BaseFrame" style:highest "base_frame"
+
+widget "*AudioTrackStripBase" style:highest "audio_track_base"
+widget "*AudioBusStripBase" style:highest "audio_bus_base"
+widget "*MidiTrackStripBase" style:highest "midi_track_base"
+widget "*AudioTrackStripBaseInactive" style:highest "track_controls_inactive"
+widget "*AudioBusStripBaseInactive" style:highest "track_controls_inactive"
+widget "*MidiTrackStripBaseInactive" style:highest "track_controls_inactive"
+widget "*FaderMetricsStrip" style:highest "audio_track_metrics"
+widget "*AudioTrackMetrics" style:highest "audio_track_metrics"
+widget "*AudioBusMetrics" style:highest "audio_bus_metrics"
+widget "*AudioTrackMetricsInactive" style:highest "audio_track_metrics_inactive"
+widget "*AudioBusMetricsInactive" style:highest "audio_bus_metrics_inactive"
+
+widget "*TimeAxisViewControlsBaseUnselected" style:highest "audio_track_base"
+widget "*AudioTrackControlsBaseUnselected" style:highest "audio_track_base"
+widget "*MidiTrackControlsBaseUnselected" style:highest "midi_track_base"
+widget "*AudioTrackFader" style:highest "gain_fader"
+
+widget "*BusControlsBaseUnselected" style:highest "audio_bus_base"
+widget "*AudioBusFader" style:highest "gain_fader"
+widget "*TrackSeparator" style:highest "track_separator"
+widget "*TrackEditIndicator0*" style:highest "edit_group_0"
+widget "*TrackEditIndicator1*" style:highest "edit_group_1"
+widget "*TrackEditIndicator2*" style:highest "edit_group_2"
+widget "*TrackEditIndicator3*" style:highest "edit_group_3"
+widget "*TrackEditIndicator4*" style:highest "edit_group_3"
+widget "*TrackEditIndicator5*" style:highest "edit_group_3"
+widget "*TrackEditIndicator6*" style:highest "edit_group_3"
+widget "*TrackEditIndicator7*" style:highest "edit_group_3"
+widget "*EditorTrackNameDisplay" style:highest "track_name_display"
+widget "*EditorTrackNameDisplay*" style:highest "track_name_display"
+widget "*EditorActiveTrackNameDisplay" style:highest "active_track_name_display"
+widget "*EditorActiveTrackNameDisplay*" style:highest "active_track_name_display"
+widget "*CrossfadeEditAuditionButton" style:highest "red_when_active"
+widget "*CrossfadeEditAuditionButton*" style:highest "red_when_active"
+widget "*CrossfadeEditCurveButton" style:highest "red_when_active"
+widget "*CrossfadeEditCurveButton*" style:highest "red_when_active"
+widget "*CrossfadeEditLabel" style:highest "medium_text"
+widget "*CrossfadeEditFrame" style:highest "base_frame"
+widget "*MouseModeButton" style:highest "default_buttons_menus"
+widget "*MouseModeButton*" style:highest "default_buttons_menus"
+widget "*EditorMainCanvas" style:highest "main_canvas_area"
+widget "*AudioTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*BusControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*AutomationTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*AutomationTrackName" style:highest "automation_track_name"
+widget "*AudioTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*BusControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*AutomationTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*AudioTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*MidiTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*BusControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*AutomationTrackControlsBase" style:highest "automation_track_controls_base"
+widget "*AutomationTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+/*widget "*EditorMenuBar*" style:highest "black_mackie_menu_bar"
+widget "*MainMenuBar*" style:highest "black_mackie_menu_bar"
+*/
+widget "*ZoomClickBox" style:highest "medium_bold_entry"
+widget "*PluginParameterLabel" style:highest "medium_text"
+widget "*PluginNameInfo" style:highest "plugin_name_text"
+widget "*PluginMakerInfo" style:highest "plugin_maker_text"
+widget "*PluginParameterInfo" style:highest "medium_text"
+widget "*MotionControllerValue" style:highest "medium_entry"
+widget "*ParameterValueDisplay" style:highest "medium_bold_entry"
+widget "*PluginUIClickBox" style:highest "medium_bold_entry"
+widget "*PluginUIClickBox*" style:highest "medium_bold_entry"
+widget "*PluginSlider" style:highest "plugin_slider"
+widget "*RedirectSelector" style:highest "redirect_list_display"
+widget "*RedirectSelector.*" style:highest "redirect_list_display"
+widget "*EditGroupDisplay" style:highest "treeview_display"
+widget "*TrackListDisplay" style:highest "treeview_display"
+widget "*RegionListDisplay" style:highest "treeview_display"
+widget "*NamedSelectionDisplay" style:highest "treeview_display"
+widget "*SnapshotDisplay" style:highest "treeview_display"
+widget "*MixerTrackCommentArea" style:highest "option_entry"
+widget "*MixerPanZone" style:highest "pan_zone"
+widget "*MixerTrackDisplayList" style:highest "treeview_display"
+widget "*MixerSnapshotDisplayList" style:highest "treeview_display"
+widget "*MixerAuxDisplayList" style:highest "treeview_display"
+widget "*MixerGroupList" style:highest "treeview_display"
+widget "*RegionEditorLabel" style:highest "medium_text"
+widget "*RegionEditorSmallLabel" style:highest "small_text"
+widget "*RegionEditorEntry" style:highest "medium_entry"
+widget "*RegionEditorClock" style:highest "default_clock_display"
+widget "*RegionEditorToggleButton" style:highest "paler_red_when_active"
+widget "*RegionEditorToggleButton*" style:highest "paler_red_when_active"
+widget "*MixerStripSpeedBase" style:highest "small_entry"
+widget "*MixerStripSpeedBase*" style:highest "small_entry"
+widget "*MixerStripSpeedBaseNotOne" style:highest "small_red_on_black_entry"
+widget "*MixerStripSpeedBaseNotOne*" style:highest "small_red_on_black_entry"
+widget "*MixerStripGainDisplay" style:highest "small_entry"
+widget "*MixerStripGainDisplay*" style:highest "small_entry"
+widget "*MixerStripGainUnitButton" style:highest "very_small_button"
+widget "*MixerStripGainUnitButton*" style:highest "very_small_button"
+widget "*MixerStripMeterPreButton" style:highest "very_small_button"
+widget "*MixerStripMeterPreButton*" style:highest "very_small_button"
+widget "*MixerStripPeakDisplay*" style:highest "red_active_small_entry"
+widget "*MixerStripPeakDisplayPeak*" style:highest "peak_display_peaked_entry"
+widget "*MixerStripSelectedFrame" style:highest "selected_strip_frame"
+widget "*MixerStripFrame" style:highest "base_frame"
+widget "*HWMonitorButton" style:highest "red_when_active"
+widget "*HWMonitorButton*" style:highest "red_when_active"
+widget "*BypassButton" style:highest "red_when_active"
+widget "*BypassButton*" style:highest "red_when_active"
+widget "*TransportSoloAlert" style:highest "flashing_alert"
+widget "*TransportSoloAlert.*" style:highest "flashing_alert"
+widget "*TransportAuditioningAlert" style:highest "flashing_alert"
+widget "*TransportAuditioningAlert.*" style:highest "flashing_alert"
+widget "*FadeCurve" style:highest "medium_bold_entry"
+widget "*FadeCurve*" style:highest "medium_bold_entry"
+widget "*IOSelectorButton" style:highest "default_buttons_menus"
+widget "*IOSelectorButton*" style:highest "default_buttons_menus"
+widget "*IOSelectorList" style:highest "medium_entry_noselection_fg"
+widget "*IOSelectorPortList" style:highest "io_selector_port_list"
+widget "*IOSelectorPortList.*" style:highest "io_selector_port_list"
+widget "*IOSelectorPortListSelected" style:highest "selected_io_selector_port_list"
+widget "*IOSelectorPortListSelected.*" style:highest "selected_io_selector_port_list"
+widget "*IOSelectorNotebook" style:highest "io_selector_notebook"
+widget "*IOSelectorNotebookTab" style:highest "io_selector_notebook"
+widget "*IOSelectorFrame" style:highest "base_frame"
+widget "*ConnectionEditorButton" style:highest "default_buttons_menus"
+widget "*ConnectionEditorButton*" style:highest "default_buttons_menus"
+widget "*ConnectionEditorList" style:highest "medium_entry_noselection_fg"
+widget "*ConnectionEditorConnectionList" style:highest "medium_entry"
+widget "*ConnectionEditorPortList" style:highest "io_selector_port_list"
+widget "*ConnectionEditorPortListSelected" style:highest "selected_io_selector_port_list"
+widget "*ConnectionEditorNotebook" style:highest "io_selector_notebook"
+widget "*ConnectionEditorNotebookTab" style:highest "io_selector_notebook"
+widget "*ConnectionEditorFrame" style:highest "base_frame"
+widget "*RouteParamsListDisplay" style:highest "inspector_track_list_display"
+widget "*RouteParamsPreListDisplay" style:highest "inspector_redirect_list_display"
+widget "*RouteParamsPostListDisplay" style:highest "inspector_redirect_list_display"
+widget "*TearOffArrow" style:highest "tearoff_arrow"
+widget "*RouteParamsTitleButton" style:highest "medium_text"
+widget "*RouteParamsTitleLabel" style:highest "medium_text"
+widget "*PluginAutomateRecordButton" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomateRecordButton*" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomatePlayButton" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomatePlayButton*" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomateButton" style:highest "small_button"
+widget "*PluginAutomateButton*" style:highest "small_button"
+widget "*PluginSaveButton" style:highest "small_button"
+widget "*PluginSaveButton*" style:highest "small_button"
+widget "*PluginLoadButton" style:highest "small_button"
+widget "*PluginLoadButton*" style:highest "small_button"
+
+widget "*MetricDialogFrame" style:highest "base_frame"
+widget "*MetricEntry" style:highest "medium_bold_entry"
+widget "*MetricButton" style:highest "default_buttons_menus"
+widget "*MetricButton.*" style:highest "default_buttons_menus"
+widget "*MetricLabel" style:highest "medium_text"
+widget "*TimeStretchButton" style:highest "default_buttons_menus"
+widget "*TimeStretchButton.*" style:highest "default_buttons_menus"
+widget "*TimeStretchProgress" style:highest "default_buttons_menus"
+widget "*ChoiceWindow" style:highest "default_buttons_menus"
+widget "*ChoicePrompt" style:highest "default_buttons_menus"
+widget "*ChoiceButton" style:highest "default_buttons_menus"
+widget "*ChoiceButton*" style:highest "default_buttons_menus"
+widget "*SelectionModeButton" style:highest "default_buttons_menus"
+widget "*SelectionModeButton*" style:highest "default_buttons_menus"
+widget "*TrackLabel" style:highest "medium_text"
+widget "*TrackPlugName" style:highest "medium_text"
+widget "*TrackParameterName" style:highest "small_text"
+widget "*AddRouteDialog*" style:highest "medium_text"
+widget "*AddRouteDialog.GtkLabel" style:highest "medium_text"
+widget "*AddRouteDialogChannelChoice" style:highest "medium_bold_entry"
+widget "*AddRouteDialogSpinner" style:highest "medium_bold_entry"
+widget "*AddRouteDialogSpinner*" style:highest "medium_bold_entry"
+widget "*AddRouteDialogRadioButton" style:highest "red_when_active"
+widget "*AddRouteDialogButton" style:highest "default_buttons_menus"
+widget "*AddRouteDialogNameTemplateEntry" style:highest "medium_bold_entry"
+widget "*NewSessionIOLabel" style:highest "larger_bold_text"
+widget "*NewSessionSR1Label" style:highest "red_medium_text"
+widget "*NewSessionSR2Label" style:highest "medium_text"
+widget "*NewSessionChannelChoice" style:highest "medium_bold_entry"
+widget "*NewSessionMainButton" style:highest "larger_bold_text"
+widget "*NewSessionMainButton*" style:highest "larger_bold_text"
+widget "*NewSessionMainLabel" style:highest "larger_bold_text"
+widget "*LocationEditRowClock" style:highest "location_rows_clock"
+widget "*LocationEditNameLabel" style:highest "medium_text"
+widget "*LocationEditSetButton" style:highest "location_row_button"
+widget "*LocationEditSetButton*" style:highest "location_row_button"
+widget "*LocationEditGoButton" style:highest "location_row_button"
+widget "*LocationEditGoButton*" style:highest "location_row_button"
+widget "*LocationEditCdButton" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditCdButton*" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditHideButton" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditHideButton*" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditNumberLabel" style:highest "small_text"
+widget "*LocationLocEditorFrame" style:highest "base_frame"
+widget "*LocationRangeEditorFrame" style:highest "base_frame"
+widget "*LocationEditNameEntry" style:highest "option_entry"
+widget "*LocationAddLocationButton" style:highest "default_buttons_menus"
+widget "*LocationAddLocationButton*" style:highest "default_buttons_menus"
+widget "*LocationAddRangeButton" style:highest "default_buttons_menus"
+widget "*LocationAddRangeButton*" style:highest "default_buttons_menus"
+widget "*LocationEditRemoveButton" style:highest "location_row_button"
+widget "*LocationEditRemoveButton*" style:highest "location_row_button"
+widget "*PanSlider" style:highest "pan_slider"
+widget "*PanningLinkButton" style:highest "mixer_red_active_button"
+widget "*PanningLinkButton.*" style:highest "mixer_red_active_button"
+widget "*PanningLinkDirectionButton" style:highest "very_small_button"
+widget "*PanningLinkDirectionButton.*" style:highest "very_small_button"
+widget "*ChannelCountSelector" style:highest "medium_bold_entry"
+widget "*ChannelCountSelector.GtkArrow" style:highest "default_buttons_menus"
+widget "*RegionListWholeFile" style:highest "treeview_parent_node"
+widget "*EditorHScrollbar" style:highest "editor_hscrollbar"
+
index 172d30b7ef6e6256a4b6a60b81d6d21eccf4c87a..a1deba9ba94d664d4a3337551232987c4e323194 100644 (file)
@@ -605,11 +605,11 @@ MidiStreamView::note_range_adjustment_changed() {
        int highest;
 
        if(sum == _range_sum_cache) {
-               cerr << "cached" << endl;
+               //cerr << "cached" << endl;
                highest = (int) floor(sum);
        }
        else {
-               cerr << "recalc" << endl;
+               //cerr << "recalc" << endl;
                highest = lowest + (int) floor(note_range_adjustment.get_page_size());
                _range_sum_cache = sum;
        }
@@ -618,7 +618,7 @@ MidiStreamView::note_range_adjustment_changed() {
                return;
        }
 
-       cerr << "note range changed: " << lowest << " " << highest << endl;
+       //cerr << "note range changed: " << lowest << " " << highest << endl;
        //cerr << "  val=" << v_zoom_adjustment.get_value() << " page=" << v_zoom_adjustment.get_page_size() << " sum=" << v_zoom_adjustment.get_value() + v_zoom_adjustment.get_page_size() << endl;
 
        set_note_range(lowest, highest);
index b3892d2790236357909b27bd9443b51b902cf199..343e8692923fa495afa0f2afd7065fcf106c6051 100644 (file)
@@ -128,7 +128,6 @@ MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session& sess, boost::shar
 
                /* ask for notifications of any new RegionViews */
                _view->attach ();
-
        }
 }
 
@@ -148,7 +147,10 @@ MidiTimeAxisView::show_at (double y, int& nth, Gtk::VBox *parent)
        ensure_xml_node ();
        xml_node->add_property ("shown_editor", "yes");
                
-       return TimeAxisView::show_at (y, nth, parent);
+       guint32 ret = TimeAxisView::show_at (y, nth, parent);
+       _piano_roll_header->show();
+       _range_scroomer->show();
+       return ret;
 }
 
 void
index 00aa5cf94e723e1f52568512b37926f06677adec..f2f255c953188e9b90dd43be2b5b9a99c4593963 100644 (file)
@@ -63,7 +63,7 @@ print_help (const char *execname)
 #endif
             << _("  [session-name]                   Name of session to load\n")
             << _("  -C, --curvetest filename         Curve algorithm debugger\n")
-            << _("  -k, --keybindings filename       Name of key bindings to load (default is ~/.ardour2/ardour.bindings)\n")
+            << _("  -k, --keybindings filename       Name of key bindings to load (default is ~/.ardour3/ardour.bindings)\n")
                ;
        return 1;
 
index 8be0bc86c1417671d3066c127ff8183ec359f975..95ebba4aebf87d1093635bc76a26551eb4d0937c 100644 (file)
@@ -628,7 +628,7 @@ void
 PianoRollHeader::send_note_on(uint8_t note) {
        boost::shared_ptr<ARDOUR::MidiTrack> track = _view.trackview().midi_track();
 
-       cerr << "note on: " << (int) note << endl;
+       //cerr << "note on: " << (int) note << endl;
 
        if(track) {
                _event[0] = MIDI_CMD_NOTE_ON;
index d7b4c99f924a456955158f84be51133191b3d94e..f5294058780c54ce345e7e17e86b491c00a1cb8b 100644 (file)
@@ -209,7 +209,7 @@ ThemeManager::on_dark_theme_button_toggled()
 {
        if (!dark_button.get_active()) return;
 
-       ARDOUR_UI::config()->ui_rc_file.set("ardour2_ui_dark.rc");
+       ARDOUR_UI::config()->ui_rc_file.set("ardour3_ui_dark.rc");
        load_rc_file (ARDOUR_UI::config()->ui_rc_file.get(), true);
 }
 
@@ -218,7 +218,7 @@ ThemeManager::on_light_theme_button_toggled()
 {
        if (!light_button.get_active()) return;
 
-       ARDOUR_UI::config()->ui_rc_file.set("ardour2_ui_light.rc");
+       ARDOUR_UI::config()->ui_rc_file.set("ardour3_ui_light.rc");
        load_rc_file (ARDOUR_UI::config()->ui_rc_file.get(), true);
 }
 
@@ -253,9 +253,9 @@ ThemeManager::setup_theme ()
                rcfile = ARDOUR_UI::config()->ui_rc_file.get();
        }
 
-       if (rcfile == "ardour2_ui_dark.rc") {
+       if (rcfile == "ardour3_ui_dark.rc") {
                dark_button.set_active();
-       } else if (rcfile == "ardour2_ui_light.rc") {
+       } else if (rcfile == "ardour3_ui_light.rc") {
                light_button.set_active();
        }
 
index 13db1f88036983ce2c48ef22ba08e747147450c3..80cd612ee7fca6ff5c3afe647557035b54e10608 100644 (file)
@@ -64,7 +64,7 @@ UIConfiguration::load_state ()
        sys::path default_ui_rc_file;
        
        if ( find_file_in_search_path (ardour_search_path() + system_config_search_path(),
-                       "ardour2_ui_default.conf", default_ui_rc_file) )
+                       "ardour3_ui_default.conf", default_ui_rc_file) )
        {
                XMLTree tree;
                found = true;
@@ -87,7 +87,7 @@ UIConfiguration::load_state ()
        sys::path user_ui_rc_file;
 
        if (find_file_in_search_path (ardour_search_path() + user_config_directory(),
-                       "ardour2_ui.conf", user_ui_rc_file))
+                       "ardour3_ui.conf", user_ui_rc_file))
        {
                XMLTree tree;
                found = true;
@@ -131,7 +131,7 @@ UIConfiguration::save_state()
        
        sys::path rcfile_path(user_config_directory());
 
-       rcfile_path /= "ardour2_ui.conf";
+       rcfile_path /= "ardour3_ui.conf";
        const string rcfile = rcfile_path.to_string();
 
        // this test seems bogus?
index ccae71b94bda27ce3d35d35af6cff6a01d9eacb7..1fa288867fc0f5c65ed05a99860b064dfd2dade1 100644 (file)
@@ -1,2 +1,2 @@
-UI_CONFIG_VARIABLE(std::string, ui_rc_file, "ui-rc-file", "ardour2_ui_dark.rc")
+UI_CONFIG_VARIABLE(std::string, ui_rc_file, "ui-rc-file", "ardour3_ui_dark.rc")
 
index 6a05bb22957d5d692d36af4da1b3306481142374..4246c3c99aa3c6135d4ff7f6ec1f871425344620 100644 (file)
@@ -355,7 +355,7 @@ if env['NLS']:
        i18n (ardour, ardour_files + vst_files + coreaudio_files + timefx_sources + audiounit_files, env)
 
 
-env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour2'), libardour))
+env.Alias('install', env.Install(os.path.join(install_prefix, env['LIBDIR'], 'ardour3'), libardour))
 
 env.Alias('version', ardour.VersionBuild(['version.cc', 'ardour/version.h'], []))
 
index 2a02638db1a355549dbd67b575afffac563de5c8..2b6dfcbb39645aa41fb58c15bf71d0b8506c9c88 100644 (file)
@@ -14,6 +14,6 @@ const char* const interchange_dir_name = X_("interchange");
 const char* const export_dir_name = X_("export");
 const char* const templates_dir_name = X_("templates");
 const char* const surfaces_dir_name = X_("surfaces");
-const char* const user_config_dir_name = X_(".ardour2");
+const char* const user_config_dir_name = X_(".ardour3");
 
 }
index cc683c2450105c78bc299c14f68dc40534a28184..9665176a677bc5b7639f193dacaca0adab488a4d 100644 (file)
@@ -56,7 +56,7 @@ using namespace std;
 using namespace ARDOUR;
 using namespace PBD;
 
-/* XXX This goes uninitialized when there is no ~/.ardour2 directory.
+/* XXX This goes uninitialized when there is no ~/.ardour3 directory.
  * I can't figure out why, so this will do for now (just stole the
  * default from configuration_vars.h).  0 is not a good value for
  * allocating buffer sizes..
index dd41198142e7d34f2516f2068cd93330de0652f4..d36bce21466a2f7ce15c01dea49b2fcde6e3cbb8 100644 (file)
@@ -56,7 +56,7 @@ sys::path
 ardour_module_directory ()
 {
        sys::path module_directory(MODULE_DIR);
-       module_directory /= "ardour2";
+       module_directory /= "ardour3";
        return module_directory;
 }
 
@@ -80,7 +80,7 @@ system_config_search_path ()
 
 #endif
 
-       config_path.add_subdirectory_to_paths("ardour2");
+       config_path.add_subdirectory_to_paths("ardour3");
 
        return config_path;
 }
@@ -98,7 +98,7 @@ system_data_search_path ()
 
 #endif
 
-       data_path.add_subdirectory_to_paths("ardour2");
+       data_path.add_subdirectory_to_paths("ardour3");
 
        return data_path;
 }
index 50c17a46c6a373141cd1b8595fea5601daaf7fd7..b9be460de3bf27044b30a19f808002dcd923ee4d 100644 (file)
@@ -264,8 +264,6 @@ void
 Scroomer::on_size_allocate (Allocation& a) {
        Gtk::DrawingArea::on_size_allocate(a);
 
-       cerr << "allocate" << endl;
-
        position[Total] = a.get_height();
        set_min_page_size(min_page_size);
        update();
@@ -314,7 +312,7 @@ Scroomer::set_min_page_size(double ps) {
 void
 Scroomer::update() {
        double range = adj.get_upper() - adj.get_lower();
-       double value = adj.get_value() - adj.get_lower();
+       //double value = adj.get_value() - adj.get_lower();
        int height = position[Total];
        double coeff = ((double) height) / range;
 
diff --git a/tools/osx_packaging/ardour2_mac_ui.rc b/tools/osx_packaging/ardour2_mac_ui.rc
deleted file mode 100644 (file)
index f265755..0000000
+++ /dev/null
@@ -1,1496 +0,0 @@
-#
-# This is the GTK style file for Ardour
-#
-#
-
-style "very_small_text"
-{
-       font_name = "sans 9"
-}
-
-style "small_text"
-{
-       font_name = "sans 10"
-}
-
-style "small_bold_text"
-{
-       font_name = "@SANS_BOLD_Big@"
-}
-
-style "medium_bold_text"
-{
-       font_name = "@SANS_BOLD_BIG@"
-}
-
-style "medium_text"
-{
-       font_name = "sans 11"
-}
-
-style "red_medium_text" = "medium_text"
-{      
-       fg[NORMAL] = { 1.0, 0, 0 }
-       fg[ACTIVE] = { 1.0, 0, 0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-}
-
-
-style "large_text"
-{
-       font_name = "sans 18"
-}
-
-style "larger_bold_text"
-{
-       font_name = "sans bold 14"
-}
-
-style "plugin_name_text"
-{
-       font_name = "sans bold 25"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-}
-
-style "plugin_maker_text"
-{
-       font_name = "sans bold 14"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-}
-
-style "automation_track_name"
-{
-       font_name = "sans italic 8"
-}
-
-style "first_action_message" 
-{
-       font_name = "sans medium 34"
-}
-
-style "verbose_canvas_cursor"
-{
-       font_name = "sans bold 24"
-}
-
-style "marker_text" 
-{
-       font_name = "sans 9"
-}
-
-style "time_axis_view_item_name"
-{
-       font_name = "sans 10"
-}
-
-style "default_base" = "medium_text"
-{
-  GtkWidget::cursor_color =  {1.0, 1.0, 1.0 }
-  GtkButton::default_border = { 0, 0, 0, 0 }
-  GtkButton::default_outside_border = { 0, 0, 0, 0 }
-  GtkTreeView::vertical-padding = 0
-  GtkTreeView::horizontal-padding = 0
-  GtkTreeView::even-row-color = { 0, 0, 0 }
-  GtkTreeView::odd-row-color = { 0, 0, 0 }
-  
-  fg[NORMAL] = { 0.80, 0.80, 0.80 }    
-  fg[ACTIVE] = { 0.80, 0.80, 0.80 }    
-  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
-  fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }       
-  fg[SELECTED] = { 0.80, 0.80, 0.80 }  
-  
-  bg[NORMAL] = { 0.35, 0.35, 0.40 }
-  bg[ACTIVE] = { 0.35, 0.35, 0.40 }
-  bg[PRELIGHT] = "#565690"
-  bg[INSENSITIVE] = { 0.10, 0.10, 0.10 }
-  bg[SELECTED] = { 0, 0.40, 0.60 }
-  
-  text[NORMAL] = { 0.80, 0.80, 0.80 }  
-  text[ACTIVE] = { 0.80, 0.80, 0.80 }  
-  text[PRELIGHT] = { 0.80, 0.80, 0.80 }        
-  text[INSENSITIVE] = { 0.80, 0.80, 0.80}      
-  text[SELECTED] = { 1.0, 1.0, 1.0 }
-  
-  base[ACTIVE]     = "#272a2f"
-  base[NORMAL]      =  "#1a1e20"
-  base[PRELIGHT]     = { 0.20, 0.20, 0.20 }
-  base[INSENSITIVE]  = "#4c5159"
-  base[SELECTED]     = { 0.25, 0.25, 0.25 }
-
-  engine "clearlooks" 
-  {
-    menubarstyle      = 2       # 0 = flat, 1 = sunken, 2 = flat gradient
-    menuitemstyle     = 1       # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button)
-    listviewitemstyle = 1       # 0 = flat, 1 = 3d-ish (gradient)
-    progressbarstyle  = 1       # 0 = candy bar, 1 = fancy candy bar, 2 = flat
-  }
-}
-
-style "base_frame"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-}
-
-style "transport_base" = "medium_bold_text"
-{
-  bg[NORMAL] = { 0.10, 0.10, 0.10 }
-  bg[ACTIVE] = { 0, 0, 0 }
-  bg[PRELIGHT] = { 0, 0, 0 }
-  bg[INSENSITIVE] = { 0, 0, 0 }
-  bg[SELECTED] = { 0, 0, 0 }
-}
-
-style "black_mackie_menu_bar"
-{
-  font_name = "sans bold 11"
-  fg[NORMAL] = { 1.0, 1.0, 1.0 }
-  bg[NORMAL] = { 0, 0, 0 }
-}
-
-style "default_buttons_menus" 
-{
-  font_name = "sans 11"
-  fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-  
-  bg[NORMAL] = { 0.30, 0.30, 0.35 }
-  bg[ACTIVE] = "#565690"
-  bg[PRELIGHT] = { 0.15, 0.15, 0.20 }
-  bg[INSENSITIVE] = { 0.15, 0.15, 0.20 }
-  bg[SELECTED] = { 0.15, 0.15, 0.20 }  
-}
-
-style "very_small_button" = "default_buttons_menus"
-{
-       font_name = "sans 8"
-       ythickness = 0
-       xthickness = 0
-}
-
-style "small_button" = "default_buttons_menus"
-{
-}
-
-style "very_small_red_active_and_selected_button" = "very_small_button"
-{
-       bg[ACTIVE] = { 1.0, 0, 0}
-       bg[SELECTED] = { 1.0, 0, 0}
-}
-
-style "small_red_active_and_selected_button" = "small_button"
-{
-       fg[ACTIVE] = { 0, 0, 0 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-       bg[SELECTED] = { 1.0, 0, 0}
-}
-
-style "gain_fader"
-{
-       bg[NORMAL] =   { 0.269, 0.269, 0.300}
-       bg[ACTIVE] =   { 0.152, 0.152, 0.168 }
-}
-
-
-style "track_rec_enable_button" = "small_button"
-{
-}
-
-style "track_rec_enable_button_active" = "small_button"
-{
-       fg[SELECTED] = { 0.0, 0.0, 0.0 }
-       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
-       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
-       fg[NORMAL] = { 0.0, 0.0, 0.0 }
-
-       bg[NORMAL] =   { 1.0, 0.0, 0.0 }
-       bg[ACTIVE] =   { 1.0, 0.0, 0.0 }
-       bg[SELECTED] =   { 1.0, 0.0, 0.0 }
-       bg[PRELIGHT] =   { 1.0, 0.0, 0.0 }
-}
-
-style "track_rec_enable_button_alternate" = "small_button"
-{
-       fg[SELECTED] = { 0.0, 0.0, 0.0 }
-       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
-       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
-       fg[NORMAL] = { 0.0, 0.0, 0.0 }
-
-       bg[NORMAL] =   { 0.91, 0.68, 0.68}
-       bg[ACTIVE] =   { 0.91, 0.68, 0.68}
-       bg[SELECTED] =   { 0.91, 0.68, 0.68}
-       bg[PRELIGHT] =   { 0.91, 0.68, 0.68}
-}
-
-style "mixer_track_rec_enable_button" = "track_rec_enable_button"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_track_rec_enable_button_alternate" = "track_rec_enable_button_alternate"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_track_rec_enable_button_active" = "track_rec_enable_button_active"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "solo_button" = "small_button"
-{
-}
-
-style "solo_button_alternate" = "small_button"
-{
-       bg[NORMAL] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[ACTIVE] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[SELECTED] = { 0.19, 0.97, 0.69 } # solo-safe
-       bg[PRELIGHT] = { 0.19, 0.97, 0.69 } # solo-safe
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-
-style "solo_button_active" = "small_button"
-{
-       bg[NORMAL] = { 0.66, 0.97, 0.19 }   # solo
-       bg[ACTIVE] = { 0.66, 0.97, 0.19 }   # solo
-       bg[SELECTED] = { 0.66, 0.97, 0.19 }   # solo
-       bg[PRELIGHT] = { 0.66, 0.97, 0.19 }   # solo
-
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mixer_solo_button" = "solo_button"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_solo_button_alternate" = "solo_button_alternate"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-style "mixer_solo_button_active" = "solo_button_active"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-
-style "mute_button" = "small_button"
-{
-}
-
-style "mute_button_alternate" = "small_button"
-{
-       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
-       bg[NORMAL] = { 1.0, 0.98, 0.53 }
-       bg[SELECTED] = { 1.0, 0.98, 0.53 }
-       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
-
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mute_button_active" = "small_button"
-{
-       bg[NORMAL] = { 0.90, 0.89, 0.73 }
-       bg[ACTIVE] = { 0.90, 0.89, 0.73 }
-       bg[PRELIGHT] = { 0.90, 0.89, 0.73 }
-       bg[SELECTED] = { 0.90, 0.89, 0.73 }
-
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-}
-
-style "mixer_mute_button" = "mute_button"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button_alternate" = "mute_button_alternate"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button_active" = "mute_button_active"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "multiline_combo" = "small_button"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "mixer_mute_button" = "mute_button"
-{
-       font_name = "sans 8"
-       xthickness = 0
-       ythickness = 0
-}
-
-style "track_loop_button" = "small_button"
-{
-       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
-       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
-
-}
-
-style "mixer_red_active_button" = "very_small_button"
-{
-       fg[ACTIVE] = { 0, 1.0, 1.0 }
-       bg[ACTIVE] = { 0.7, 0, 0 }
-
-       base[INSENSITIVE] = { 0.16, 0.16, 0.21 }
-       bg[INSENSITIVE] = { 0.16, 0.16, 0.21 }
-}
-
-style "time_button" = "default_buttons_menus"
-{
-       font_name = "sans 10"
-}
-
-style "transport_button"
-{
-}
-
-style "transport_button_active"
-{
-       bg[NORMAL] = { 0.50, 1.0, 0.50 }
-       bg[ACTIVE] = { 0.50, 1.0, 0.50 }
-       bg[SELECTED] = { 0.50, 1.0, 0.50 }
-       bg[PRELIGHT] = { 0.50, 1.0, 0.50 }
-
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       fg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "transport_rec_button"
-{
-}
-
-style "transport_rec_button_active"
-{
-       bg[ACTIVE] = { 1.0, 0, 0 }
-       bg[NORMAL] = { 1.0, 0, 0 }
-       bg[SELECTED] = { 1.0, 0, 0 }
-       bg[PRELIGHT] = { 1.0, 0, 0 }
-}
-
-style "transport_rec_button_alternate"
-{
-       bg[PRELIGHT] = { 0.91, 0.68, 0.68 }
-       bg[NORMAL] = { 0.91, 0.68, 0.68 }
-       bg[SELECTED] = { 0.91, 0.68, 0.68 }
-       bg[ACTIVE] = { 0.91, 0.68, 0.68 }
-}
-
-style "shuttle_control" = "very_small_text"
-{
-       fg[NORMAL] = { 0.85, 0.92, 0.98 }
-       fg[ACTIVE] = { 0.85, 0.92, 0.98 }
-       fg[PRELIGHT] = { 0.85, 0.92, 0.98 }
-       fg[SELECTED] = { 0.85, 0.92, 0.98 }
-       fg[INSENSITIVE] = { 0.85, 0.92, 0.98 }
-
-       bg[NORMAL] = { 0.26, 0.26, 0.31 }
-       bg[PRELIGHT] = { 0.26, 0.26, 0.31 }
-       bg[INSENSITIVE] = { 0.26, 0.26, 0.31 }
-       bg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       bg[SELECTED] = { 1.0, 0.04, 0.04 }
-}
-
-style "ardour_adjusters" = "default_buttons_menus"
-{
-       bg[NORMAL] = { 0.60, 0.60, 0.60 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.06, 0.06, 0.06 }
-}
-
-style "editor_hscrollbar" = "ardour_adjusters"
-{
-       #
-       # special case: we want this scrollbar to be as tall as the
-       # zoom focus selector combobox. scrollbars don't expand to
-        # fill the space available to them, so we have to explicitly
-       # make it bigger.
-       # 
-       GtkRange::slider_width = 27
-        GtkScrollbar::slider_width = 27
-}
-
-style "ardour_progressbars" = "default_buttons_menus"
-{ 
-  bg[NORMAL] = { 0, 0, 0 }
-  bg[PRELIGHT] = { 0.00, 0.36, 0.40 }
-}
-
-style "options_window"  = "default_base"
-{
-       font_name = "sans 11"
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "option_entry"  = "default_base"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       
-       base[INSENSITIVE] = { 0.07, 0.07, 0.12 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       bg[ACTIVE] = { 0.35, 0.35, 0.40 }
-}
-
-style "red_when_active" = "medium_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.26, 0.26, 0.31 }
-
-       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-}
-
-style "xrun_warn"  
-{
-       font_name = "sans bold 18"
-
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       text[NORMAL] = { 1.0, 1.0, 1.0 }
-       text[ACTIVE] = { 1.0, 1.0, 1.0 }
-       base[NORMAL] = { 0.09, 0.48, 0.46 }
-       base[ACTIVE] = { 0.09, 0.48, 0.46 }
-       bg[NORMAL] = { 1.0, 0.48, 0.46 }
-       bg[ACTIVE] = { 0.09, 1.0, 0.46 }
-}
-
-style "menu_bar_base" = "default_base"
-{
-       bg[NORMAL] = { 0.2, 0.2, 0.3 }
-       bg[ACTIVE] = { 0, 0, 0 }
-       bg[PRELIGHT] = { 0, 0, 0 }
-       bg[INSENSITIVE] = { 0, 0, 0 }
-       bg[SELECTED] = { 0, 0, 0 }
-}
-
-style "fatal_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 1.0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "error_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "info_message" = "medium_text"
-{
-   fg[ACTIVE] = { 1.0, 0, 0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0,0,0 }
-   bg[NORMAL] = { 0,0,0 }
-   base[ACTIVE] = { 0,0,0 }
-   base[NORMAL] = { 0,0,0 }
-}
-
-style "warning_message" = "medium_text"
-{
-   fg[ACTIVE] = { 0.30,0.30, 1.0 }
-   fg[NORMAL] = { 0.80, 0.80, 0.80 }
-   bg[ACTIVE] = { 0, 0, 0 }
-   bg[NORMAL] = { 0, 0, 0 }
-   base[ACTIVE] = { 0, 0, 0 }
-   base[NORMAL] = { 0, 0, 0 }
-}
-
-style "medium_entry" = "medium_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0.70, 0.70, 0.70 }
-}
-
-style "medium_entry_noselection_fg" = "medium_entry"
-{
-       fg[SELECTED] = { 0.50, 1.0, 0.50 }
-}
-
-style "medium_entry_noselection_bg" = "medium_entry"
-{
-       bg[SELECTED] = { 1.0, 1.0, 1.0 }
-}
-
-style "medium_bold_entry"  = "medium_bold_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "small_entry" = "small_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0, 1.0, 0 }
-       fg[SELECTED] = { 0, 1.0, 0 }
-       text[NORMAL] = { 0.70, 0.70, 0.70 }
-       text[ACTIVE] = { 0, 1.0, 0 }
-       text[SELECTED] = { 0, 1.0, 0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[SELECTED] = { 0.0, 0.0, 0.0 }
-       bg[SELECTED] = { 0.0, 0.0, 0.0 }
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "red_active_small_entry" = "small_entry"
-{
-       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-}
-
-style "small_bold_entry" = "small_bold_text"
-{
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-       
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "small_red_on_black_entry"  = "small_bold_text"
-{
-       fg[NORMAL] = { 1.0, 0, 0 }
-       fg[ACTIVE] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
-}
-
-style "non_recording_big_clock_display" = "medium_entry"
-{
-       font_name = "sans 60"
-
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       fg[PRELIGHT] = { 1.0, 0, 0.0 }
-       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
-       
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.7, 0.0, 0.0 }  
-}
-
-style "recording_big_clock_display" = "non_recording_big_clock_display"
-{
-       fg[NORMAL] = { 1.0, 0, 0 }
-}
-
-style "transport_clock_display"
-{
-       font_name = "sans bold 14"
-       
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       fg[PRELIGHT] = { 1.0, 0, 0.0 }
-       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
-       
-       base[NORMAL] = { 0.0, 0.0, 0.0 }
-       base[ACTIVE] = { 0.0, 0.0, 0.0 }
-       bg[NORMAL] = { 0.0, 0.0, 0.0 }
-       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
-}
-
-style "tempo_meter_clock_display"
-{
-       font_name = "sans 8"
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0.0, 0.48, 1.0 }
-       base[ACTIVE] = { 0.09, 0.98, 0.46 }
-       bg[NORMAL] = { 0.0, 0.48, 1.0 }
-       bg[ACTIVE] = { 0.09, 0.98, 0.46 }
-}
-
-style "default_clock_display" = "medium text"
-{
-       fg[NORMAL] = { 0.50, 1.0, 0.50 }
-       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
-       fg[SELECTED] = { 1.0, 0, 0 }
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       bg[NORMAL] = { 0, 0, 0 }
-       bg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "editor_time_ruler" = "small_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.09, 0.09, 0.09 }
-}
-
-style "audio_track_base" = "default_base"
-{
-  font_name = "sans 8"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  bg[NORMAL] = { 0.18, 0.19, 0.22 }
-  bg[ACTIVE] = { 0.20, 0.20, 0.20 }    
-  bg[PRELIGHT] = { 0.20, 0.20, 0.20 }
-  bg[INSENSITIVE] = { 0.20, 0.20, 0.20 }
-  bg[SELECTED] = { 0.20, 0.20, 0.20 }
-}
-
-style "audio_bus_base"
-{
-  font_name = "sans 8"
-  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
-  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
-  #bg[NORMAL] = {0, 0.36, 0.40 }
-  bg[NORMAL] = "#444466"       
-}
-
-style "track_name_display"
-{
-       font_name = "sans medium 11"
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
-
-       base[NORMAL] = { 0.06, 0.06, 0.06 }
-       base[ACTIVE] = { 0.26, 0.26, 0.26 }
-       bg[NORMAL] = { 0.26, 0.26, 0.26 }
-       bg[ACTIVE] = { 0.26, 0.26, 0.26 }
-}
-
-style "active_track_name_display"
-{
-       font_name = "sans medium 11"
-       text[NORMAL] = { 0.26, 0.26, 0.26 }
-       base[NORMAL] = { 0.89, 0.89, 0.89 }
-}
-
-style "track_separator"
-{
-       bg[NORMAL] = { 0.35, 0.35, 0.40 }
-}
-
-#
-# Track edit groups. These styles define
-# the colors that the "edit" button will
-# use as a track is moved from
-# track edit group to track edit group.
-# There are 8 edit groups. Edit group 0
-# is used for tracks that are not editable, 
-# so we leave its style to the default.
-#
-
-style "edit_group_0"
-
-{
-       bg[ACTIVE] = { 1.0, 0.65, 0.13 }
-       bg[NORMAL] = { 0.31, 0.31, 0.31 }
-       fg[NORMAL] = { 0.82, 0.91, 0.99 }
-       fg[ACTIVE] = { 0, 0, 0 }
-}
-
-style "edit_group_1" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "edit_group_2" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "edit_group_3" 
-{
-       fg[NORMAL] = { 0, 0, 0 }
-       fg[PRELIGHT] = { 0, 0, 0 }
-       fg[SELECTED] = { 0, 0, 0 }
-       bg[NORMAL] = { 0.93, 0.34, 0.08 }
-       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
-       bg[SELECTED] = { 0.93, 0.34, 0.08 }
-}
-
-style "treeview_parent_node"
-{
-       # specifies *just* the color used for whole file rows when not selected
-       fg[NORMAL] = { 0.0, 0.6, 0.85 }
-}
-
-style "treeview_display" = "small_bold_text"
-{
-       # expander arrow border and DnD "icon" text
-       fg[NORMAL] = { 0.8, 0.8, 0.8 } 
-
-       # background with no rows or no selection, plus
-       # expander arrow core and DnD "icon" background
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-
-       # selected row bg when window does not have focus (including during DnD)
-       base[ACTIVE] = { 0.0, 0.60, 0.60 }    
-
-       # selected row bg when window has focus
-       base[SELECTED] = { 0, 0.75, 0.75 }
-
-       # row text when in normal state and not a parent
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-
-       # selected row text with window focus
-       text[SELECTED] = { 0, 1.0, 1.0 }  
-
-       # selected row text without window focus (including during DnD)
-       text[ACTIVE] = { 0, 1.0, 1.0 }  
-}
-
-style "main_canvas_area"
-{
-       bg[NORMAL] = { 0.30, 0.30, 0.34 }
-       bg[ACTIVE] = { 0.30, 0.30, 0.34 }
-       bg[INSENSITIVE] = { 0.30, 0.30, 0.34 }
-       bg[SELECTED] = { 0.30, 0.30, 0.34 }
-       bg[PRELIGHT] = { 0.30, 0.30, 0.34 }
-}
-
-style "track_controls_inactive"
-{
-       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
-       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
-       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
-       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
-       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
-
-       font_name = "sans medium 10"
-       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
-}
-
-style "edit_controls_base_selected"
-{
-       bg[NORMAL] = { 0.60, 0.54, 0.60 }
-       bg[ACTIVE] = { 0.60, 0.54, 0.60 }
-       bg[INSENSITIVE] = { 0.60, 0.54, 0.60 }
-       bg[SELECTED] = { 0.60, 0.54, 0.60 }
-       bg[PRELIGHT] = { 0.60, 0.54, 0.60 }
-}
-
-style "automation_track_controls_base"
-{
-       bg[NORMAL] = { 0.22, 0.22, 0.29 }
-       bg[ACTIVE] = { 0.22, 0.22, 0.29 }
-       bg[INSENSITIVE] = { 0.22, 0.22, 0.29 }
-       bg[SELECTED] = { 0.22, 0.22, 0.29 }
-       bg[PRELIGHT] = { 0.22, 0.22, 0.29 }
-}
-
-# Plugin Editors
-style "plugin_slider" 
-{
-       font_name ="@SANS_BOLD_Big@"
-
-       # the slider itself. the inactive part is INSENSITIVE,
-       # the active part is something else.
-
-       fg[NORMAL] = { 0.37, 0.43, 0.52 }
-       fg[ACTIVE] = { 0.37, 0.43, 0.52 }
-       fg[INSENSITIVE] = {0.35, 0.35, 0.40 } # matches default_base
-       fg[SELECTED] = { 0.37, 0.43, 0.52 }
-       fg[PRELIGHT] = { 0.37, 0.43, 0.52 }
-
-       # draws the outer rectangle around the slider
-
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[INSENSITIVE] = {0.80, 0.80, 0.80 }
-       bg[SELECTED] = { 0.80, 0.80, 0.80 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-
-       # the numeric display
-
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.80, 0.80, 0.80 }
-       text[INSENSITIVE] = { 0.80, 0.80, 0.80 }
-       text[SELECTED] = { 0.80, 0.80, 0.80 }
-       text[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "track_list_display" = "small_bold_text"
-{
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.3, 0.3, 0.3 }
-       text[INSENSITIVE] = { 0, 0, 0 }
-       text[SELECTED] = { 0.8, 0.8, 0.8 }
-
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[INSENSITIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-}
-
-style "inspector_track_list_display" = "track_list_display"
-{
-       text[ACTIVE] = { 0.8, 0.8, 0.8 }
-
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0.2, 0.2, 0.2 }
-       base[INSENSITIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0.3, 0.3, 0.4 }
-}
-
-style "redirect_list_display"
-{
-       GtkTreeView::horizontal-separator = 0
-       GtkTreeView::vertical-separator = 0
-
-       font_name = "sans 10"
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[ACTIVE] = { 0.70, 0.70, 0.70 }
-       text[INSENSITIVE] = { 0, 0, 0 }
-       text[SELECTED] = { 0.9, 0.3, 0.3 }
-
-       base[NORMAL] = { 0, 0, 0 }
-       base[ACTIVE] = { 0, 0, 0 }
-       base[INSENSITIVE] = { 0, 0, 0 }
-       base[SELECTED] = { 0, 0, 0 }
-
-       # these two are explicitly used by the cell renderer for the
-        # text
-
-       fg[NORMAL] = { 0.5, 0.5, 0.5 }  # used for inactive
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }  # used for active
-}
-
-style "inspector_redirect_list_display" = "redirect_list_display"
-{
-       base[SELECTED] = { 0.3, 0.3, 0.3 }
-}
-
-# MixerPanZone:
-#
-# the NORMAL fg color is used for the pan puck
-# the ACTIVE fg color is used for the speaker boxes
-
-style "pan_zone" = "default_base"
-{
-       fg[NORMAL] = { 0.34, 0.95, 0.92 }
-       fg[ACTIVE] = { 0.95, 0.48, 0.11 }
-}
-
-style "paler_red_when_active" = "medium_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.31, 0.31, 0.31 }
-       bg[PRELIGHT] = { 0.31, 0.31, 0.31 }
-
-       fg[ACTIVE] = { 0.36, 0.46, 0.28 }
-       bg[ACTIVE] = { 1.00, 0.59, 0.59}
-}
-
-style "peak_display_peaked_entry" = "small_text"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
-       fg[SELECTED] = { 1.0, 1.0, 1.0 }
-
-       bg[NORMAL] = {0.9, 0.0, 0.0 }   
-       bg[ACTIVE] = { 0.9, 0.0, 0.0 }  
-       bg[PRELIGHT] = { 0.9, 0.0, 0.0 }        
-       bg[INSENSITIVE] = { 0.9, 0.0, 0.0 }     
-       bg[SELECTED] = { 0.9, 0.0, 0.0 }        
-       base[NORMAL] = { 0.9, 0.0, 0.0 }        
-       base[ACTIVE] = { 0.9, 0.0, 0.0 }        
-       base[PRELIGHT] = { 0.9, 0.0, 0.0 }      
-       base[INSENSITIVE] = { 0.9, 0.0, 0.0 }   
-       base[SELECTED] = { 0.9, 0.0, 0.0 }      
-}
-
-style "selected_strip_frame"
-{
-       fg[NORMAL] = { 0.74, 0.42, 0.47 }
-       bg[NORMAL] = { 0.79, 0.28, 0.18 }
-}
-
-style "flashing_alert" = "very_small_text"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.26, 0.26, 0.31 }
-
-       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
-       bg[ACTIVE] = { 1.0, 0, 0}
-}
-
-style "selected_io_selector_port_list" = "medium_bold_text"
-{
-
-       GtkTreeView::even-row-color = { 0, 0, 0 }
-       GtkTreeView::odd-row-color = { 0, 0, 0 }
-
-# fg is used to color the fg (text) of the column header button
-
-       fg[NORMAL] = { 0.85, 0.85, 0.85 }
-       fg[SELECTED] = { 0.85, 0.85, 0.85 }
-       fg[ACTIVE] = { 0.85, 0.85, 0.85 }
-       fg[PRELIGHT] = { 0.85, 0.85, 0.85 }
-       fg[INSENSITIVE] = { 0.85, 0.85, 0.85 }
-
-# bg is used used to color the background of the column header button
-
-       bg[NORMAL] = { 0.30, 0.30, 0.35 }
-       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
-       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
-       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
-       bg[SELECTED] = { 0.30, 0.30, 0.35 }
-
-# text is used to color the treeview row text
-
-       text[NORMAL] = { 0.85, 0.85, 0.85 }
-       text[SELECTED] = { 0.85, 0.85, 0.85 }
-
-# base is used to color a treeview with no rows
-
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-       base[ACTIVE] = { 0.20, 0.20, 0.25 }
-       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
-       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
-       base[SELECTED] = { 0.20, 0.20, 0.25 }
-
-}
-
-style "io_selector_port_list" = "medium_text"
-{
-       GtkTreeView::even-row-color = { 0.20, 0.20, 0.25 }
-       GtkTreeView::odd-row-color = { 0.20, 0.20, 0.25 }
-# fg is used to color the fg (text) of the column header button
-
-       fg[NORMAL] = { 0.70, 0.70, 0.70 }
-       fg[SELECTED] = { 0.70, 0.70, 0.70 }
-       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
-       fg[PRELIGHT] = { 0.70, 0.70, 0.70 }
-       fg[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-
-# bg is used used to color the background of the column header button
-
-       bg[NORMAL] = { 0.30, 0.30, 0.35 }
-       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
-       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
-       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
-       bg[SELECTED] = { 0.30, 0.30, 0.35 }
-
-# text is used to color the treeview row text
-
-       text[NORMAL] = { 0.80, 0.80, 0.80 }
-       text[SELECTED] = { 0.80, 0.80, 0.80 }
-
-# base is used to color a treeview with no rows
-
-       base[NORMAL] = { 0.20, 0.20, 0.25 }
-       base[ACTIVE] = { 0.20, 0.20, 0.25 }
-       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
-       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
-       base[SELECTED] = { 0.20, 0.20, 0.25 }
-}
-
-style "io_selector_notebook" = "default_base"
-{
-       fg[NORMAL] = { 1.0, 1.0, 1.0 }
-        font_name ="sans bold 8"
-}
-
-style "tearoff_arrow" = "medium_bold_entry"
-{
-       fg[NORMAL] = { 0.80, 0.80, 0.80 }
-       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-       bg[NORMAL] = { 0.80, 0.80, 0.80 }
-       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
-}
-
-style "meter_metrics_strip" = "default_base"
-{
-       font_name = "sans 5"
-       fg[NORMAL] = { 1.0, 0.8, 0.2 }  
-}
-
-style "location_row_button" = "default_buttons_menus"
-{
-       font_name = "sans 10"
-}
-
-style "location_rows_clock" = "default_clock_display"
-{
-       font_name = "sans 12"
-}
-
-style "pan_slider" 
-{
-       font_name = "sans 8"
-
-       fg[NORMAL] = { 0.22, 0.73, 0.22 }
-       fg[ACTIVE] = { 0.22, 0.73, 0.22 }
-       fg[INSENSITIVE] = {0.22, 0.53, 0.22 } 
-       fg[SELECTED] = { 0.67, 0.23, 0.22 }
-       fg[PRELIGHT] = { 0.67, 0.23, 0.22 }
-
-       bg[NORMAL] = { 0.05, 0.05, 0.05 }
-       bg[ACTIVE] = { 0, 0, 0 }
-       bg[INSENSITIVE] = {0.12, 0.19, 0.25 } 
-       bg[SELECTED] = { 0, 0, 0 }
-       bg[PRELIGHT] = { 0, 0, 0 }
-
-       text[NORMAL] = { 0.70, 0.70, 0.70 }
-       text[ACTIVE] = { 0.70, 0.70, 0.70 }
-       text[INSENSITIVE] = { 0.70, 0.70, 0.70 }
-       text[SELECTED] = { 0.70, 0.70, 0.70 }
-       text[PRELIGHT] = { 0.70, 0.70, 0.70 }
-
-       # used to draw the triangular indicators 
-
-       base[NORMAL] = { 0.80, 0.80, 0.80 }
-       base[ACTIVE] =  { 0.80, 0.80, 0.80 }
-       base[INSENSITIVE] = {0.6, 0.6, 0.6 }
-       base[SELECTED] = { 0.80, 0.80, 0.80 }
-       base[PRELIGHT] = { 0.80, 0.80, 0.80 }
-
-}
-
-style "ardour_button" ="default_buttons_menus"
-{
-       xthickness = 1
-       ythickness = 1
-}
-
-#---------------------------------------------------------------
-
-class "GtkWidget" style:highest "default_base"
-class "GtkScrollbar" style:highest "ardour_adjusters"
-class "GtkLabel" style:highest "default_buttons_menus"
-class "GtkButton" style:highest "ardour_button"
-class "GtkArrow" style:highest "tearoff_arrow"
-class "GtkProgressBar" style:highest "ardour_progressbars"
-
-widget "*FirstActionMessage" style:highest "first_action_message"
-widget "*VerboseCanvasCursor" style:highest "verbose_canvas_cursor"
-widget "*MarkerText" style:highest "marker_text"
-widget "*TimeAxisViewItemName*" style:highest "time_axis_view_item_name"
-#widget "*ExportProgress" style:highest "default_buttons_menus"
-widget "*ExportFileLabel" style:highest "small_bold_text"
-widget "*ExportFormatLabel" style:highest "medium_bold_text"
-widget "*ExportHeader" style:highest "small_bold_text"
-widget "*ExportFileDisplay" style:highest "medium_entry"
-widget "*ExportFormatDisplay" style:highest "medium_entry"
-widget "*ExportCheckbox" style:highest "small_entry"
-widget "*ExportTrackSelector*" style:highest "medium_entry_noselection_bg"
-widget "*EditModeSelector" style:highest "medium_bold_entry"
-widget "*SnapTypeSelector" style:highest "medium_bold_entry"
-widget "*SnapModeSelector" style:highest "medium_bold_entry"
-widget "*ZoomFocusSelector" style:highest "medium_bold_entry"
-widget "*ArdourContextMenu*" style:highest "default_buttons_menus"
-widget "*EditGroupTitleButton*" style:highest "default_buttons_menus"
-widget "*MixerGroupTitleButton*" style:highest "default_buttons_menus"
-widget "*ErrorLogCloseButton" style:highest "default_buttons_menus"
-widget "*EditorGTKButton*" style:highest "default_buttons_menus" 
-widget "*ToolbarButton" style:highest "default_buttons_menus"
-widget "*ToolbarButton*" style:highest "default_buttons_menus"
-widget "*CrossfadeEditButton" style:highest "default_buttons_menus"
-widget "*CrossfadeEditButton*" style:highest "default_buttons_menus"
-widget "*TrackHistoryButton*" style:highest "default_buttons_menus"
-widget "*TrackSizeButton*" style:highest "default_buttons_menus"
-widget "*TrackPlaylistButton*" style:highest "default_buttons_menus"
-widget "*TrackAutomationButton*" style:highest "default_buttons_menus"
-widget "*TrackGroupButton*" style:highest "default_buttons_menus"
-widget "*TrackMixButton*" style:highest "default_buttons_menus"
-widget "*TrackVisualButton*" style:highest "default_buttons_menus"
-widget "*TrackRemoveButton*" style:highest "default_buttons_menus"
-widget "*BaseButton" style:highest "default_buttons_menus"
-widget "*TakeButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerWidthButton" style:highest "default_buttons_menus"
-widget "*MixerHideButton" style:highest "default_buttons_menus"
-widget "*MixerSendButton" style:highest "default_buttons_menus"
-widget "*MixerSendButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerSendSwitch" style:highest "default_buttons_menus"
-widget "*MixerInsertButton" style:highest "default_buttons_menus"
-widget "*MixerInsertButtonLabel" style:highest "default_buttons_menus"
-widget "*MixerInsertSwitch" style:highest "default_buttons_menus"
-widget "*MixerMonitorInputButton*" style:highest "very_small_button"
-widget "*MixerMonitorInputButton.*" style:highest "very_small_button"
-widget "*MixerIOButton" style:highest "very_small_button"
-widget "*MixerIOButtonLabel" style:highest "very_small_button"
-widget "*AddRouteDialogSpinner" style:highest "ardour_adjusters"
-widget "*AddRouteDialogRadioButton*" style:highest "options_window"
-widget "*OptionsNotebook" style:highest "options_window"
-widget "*OptionEditorToggleButton*" style:highest "options_window"
-widget "*OptionsLabel" style:highest "options_window"
-widget "*OptionEditorAuditionerLabel" style:highest "options_window"
-widget "*OptionsEntry" style:highest "option_entry"
-widget "*InspectorNotebook" style:highest "options_window"
-widget "*NewSessionDialog" style:highest "options_window"
-widget "*NewSessionDialogButton*" style:highest "options_window"
-widget "*MixerSendSwitch*" style:highest "very_small_red_active_and_selected_button"
-widget "*OptionEditorToggleButton" style:highest "small_red_active_and_selected_button"
-widget "*NewSessionDialogButton" style:highest "small_red_active_and_selected_button"
-widget "*RecordEnableButton" style:highest "track_rec_enable_button"
-widget "*RecordEnableButton-active" style:highest "track_rec_enable_button_active"
-widget "*RecordEnableButton-alternate" style:highest "track_rec_enable_button_alternate"
-widget "*MixerRecordEnableButton" style:highest "mixer_track_rec_enable_button"
-widget "*MixerRecordEnableButton-active" style:highest "mixer_track_rec_enable_button_active"
-widget "*MixerRecordEnableButton-alternate" style:highest "mixer_track_rec_enable_button_alternate"
-widget "*MuteButton" style:highest "mute_button"
-widget "*MuteButton-alternate" style:highest "mute_button_alternate"
-widget "*MuteButton-active" style:highest "mute_button_active"
-widget "*MixerMuteButton" style:highest "mixer_mute_button"
-widget "*MixerMuteButton-alternate" style:highest "mixer_mute_button_alternate"
-widget "*MixerMuteButton-active" style:highest "mixer_mute_button_active"
-widget "*SoloButton" style:highest "solo_button"
-widget "*SoloButton-alternate" style:highest "solo_button_alternate"
-widget "*SoloButton-active" style:highest "solo_button_active"
-widget "*MixerSoloButton" style:highest "mixer_solo_button"
-widget "*MixerSoloButton-alternate" style:highest "mixer_solo_button_alternate"
-widget "*MixerSoloButton-active" style:highest "mixer_solo_button_active"
-widget "*TrackLoopButton*" style:highest "track_loop_button"
-widget "*PanAutomationLineSelector*" style:highest "multiline_combo"
-widget "*EditorTimeButton*" style:highest "time_button"
-widget "*MixerPhaseInvertButton*" style:highest "very_small_button"
-widget "*MixerPhaseInvertButton.*" style:highest "very_small_button"
-widget "*MixerAutomationRecordingButton*" style:highest "very_small_button"
-widget "*MixerAutomationRecordingButton.*" style:highest "very_small_button"
-widget "*MixerAutomationModeButton*" style:highest "very_small_button"
-widget "*MixerAutomationModeButton.*" style:highest "very_small_button"
-widget "*MixerAutomationPlaybackButton*" style:highest "very_small_button"
-widget "*MixerAutomationPlaybackButton.*" style:highest "very_small_button"
-widget "*MixerNameButton" style:highest "very_small_button"
-widget "*MixerNameButtonLabel" style:highest "very_small_button"
-widget "*MixerGroupButton" style:highest "very_small_button"
-widget "*MixerGroupButtonLabel" style:highest "very_small_button"
-widget "*MixerCommentButton" style:highest "very_small_button"
-widget "*MixerCommentButton*" style:highest "very_small_button"
-widget "*EditGroupButton" style:highest "very_small_button"
-widget "*EditGroupButtonLabel" style:highest "very_small_button"
-widget "*TransportButton" style:highest "transport_rec_button"
-widget "*TransportButton-active" style:highest "transport_button_active"
-widget "*ShuttleButton" style:highest "transport_button"
-widget "*ShuttleButton*" style:highest "transport_button"
-widget "*ShuttleDisplay" style:highest "transport_button"
-widget "*ShuttleDisplay*" style:highest "transport_button"
-widget "*ShuttleControl" style:highest "shuttle_control"
-widget "*TransportRecButton" style:highest "transport_rec_button"
-widget "*TransportRecButton*" style:highest "transport_rec_button"
-widget "*TransportRecButton-active" style:highest "transport_rec_button_active"
-widget "*TransportRecButton-active*" style:highest "transport_rec_button_active"
-widget "*TransportRecButton-alternate" style:highest "transport_rec_button_alternate"
-widget "*TransportRecButton-alternate*" style:highest "transport_rec_button_alternate"
-widget "*TransportRecButton*" style:highest "transport_rec_button"
-widget "*RecordingXrunWarningWindow" style:highest "xrun_warn"
-widget "*RecordingXrunWarningWindow*" style:highest "xrun_warn"
-widget "*MainMenuBar" style:highest "menu_bar_base"
-widget "*ErrorMessage" style:highest "error_message"
-widget "*FatalMessage" style:highest "fatal_message"
-widget "*InfoMessage" style:highest "info_message"
-widget "*WarningMessage" style:highest "warning_message"
-widget "*BigClockNonRecording" style:highest "non_recording_big_clock_display"
-widget "*BigClockRecording" style:highest "recording_big_clock_display"
-widget "*TransportClockDisplay" style:highest "transport_clock_display"
-widget "*SecondaryClockDisplay" style:highest "transport_clock_display"
-widget "*AudioClockFramesUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockFramesLowerInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockSMPTEUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockSMPTELowerInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockBBTUpperInfo" style:highest "tempo_meter_clock_display"
-widget "*AudioClockBBTLowerInfo" style:highest "tempo_meter_clock_display"
-widget "*SelectionStartClock" style:highest "default_clock_display"
-widget "*SelectionEndClock" style:highest "default_clock_display"
-widget "*EditCursorClock" style:highest "default_clock_display"
-widget "*PreRollClock" style:highest "default_clock_display"
-widget "*PostRollClock" style:highest "default_clock_display"
-widget "*NudgeClock" style:highest "default_clock_display"
-widget "*ZoomRangeClock" style:highest "default_clock_display"
-widget "*SMPTEOffsetClock" style:highest "default_clock_display"
-widget "*TransportLabel" style:highest "small_bold_text"
-widget "*TakeLabel" style:highest "small_bold_text"
-widget "*LocationLabel" style:highest "small_bold_text"
-widget "*WipeLabel" style:highest "small_bold_text"
-widget "*TakeTagLabel" style:highest "small_bold_text"
-widget "*ToolBarLabel" style:highest "small_bold_text"
-widget "*EditorDisplayLabel" style:highest "small_bold_text"
-widget "*NewSessionLabel" style:highest "large_text"
-widget "*GlobalButtonLabel" style:highest "default_buttons_menus"
-widget "*ClickButton" style:highest "medium_entry"
-widget "*RegionNameDisplay" style:highest "medium_entry"
-widget "*PluginDisplay" style:highest "medium_entry"
-widget "*SelectionDisplay" style:highest "medium_entry"
-widget "*HistorySelector" style:highest "medium_entry"
-widget "*LocationSelector" style:highest "medium_entry"
-widget "*TakeSelector" style:highest "medium_entry"
-widget "*RegionSelector" style:highest "medium_entry"
-widget "*SMPTERuler" style:highest "editor_time_ruler"
-widget "*BBTRuler" style:highest "editor_time_ruler"
-widget "*FramesRuler" style:highest "editor_time_ruler"
-widget "*MinSecRuler" style:highest "editor_time_ruler"
-widget "*BaseFrame" style:highest "base_frame"
-widget "*AudioTrackStripBase" style:highest "audio_track_base"
-widget "*TimeAxisViewControlsBaseUnselected" style:highest "audio_track_base"
-widget "*AudioTrackControlsBaseUnselected" style:highest "audio_track_base"
-widget "*AudioTrackFader" style:highest "gain_fader"
-widget "*AudioBusStripBase" style:highest "audio_bus_base"
-widget "*BusControlsBaseUnselected" style:highest "audio_bus_base"
-widget "*AudioBusFader" style:highest "gain_fader"
-widget "*TrackSeparator" style:highest "track_separator"
-widget "*TrackEditIndicator0*" style:highest "edit_group_0"
-widget "*TrackEditIndicator1*" style:highest "edit_group_1"
-widget "*TrackEditIndicator2*" style:highest "edit_group_2"
-widget "*TrackEditIndicator3*" style:highest "edit_group_3"
-widget "*TrackEditIndicator4*" style:highest "edit_group_3"
-widget "*TrackEditIndicator5*" style:highest "edit_group_3"
-widget "*TrackEditIndicator6*" style:highest "edit_group_3"
-widget "*TrackEditIndicator7*" style:highest "edit_group_3"
-widget "*EditorTrackNameDisplay" style:highest "track_name_display"
-widget "*EditorTrackNameDisplay*" style:highest "track_name_display"
-widget "*EditorActiveTrackNameDisplay" style:highest "active_track_name_display"
-widget "*EditorActiveTrackNameDisplay*" style:highest "active_track_name_display"
-widget "*CrossfadeEditAuditionButton" style:highest "red_when_active"
-widget "*CrossfadeEditAuditionButton*" style:highest "red_when_active"
-widget "*CrossfadeEditCurveButton" style:highest "red_when_active"
-widget "*CrossfadeEditCurveButton*" style:highest "red_when_active"
-widget "*CrossfadeEditLabel" style:highest "medium_text"
-widget "*CrossfadeEditFrame" style:highest "base_frame"
-widget "*MouseModeButton" style:highest "default_buttons_menus"
-widget "*MouseModeButton*" style:highest "default_buttons_menus"
-widget "*EditorMainCanvas" style:highest "main_canvas_area"
-widget "*AudioTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*BusControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*AutomationTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
-widget "*AutomationTrackName" style:highest "automation_track_name"
-widget "*AudioTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*BusControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*AutomationTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
-widget "*AudioTrackStripBaseInactive" style:highest "track_controls_inactive"
-widget "*AudioBusStripBaseInactive" style:highest "track_controls_inactive"
-widget "*AudioTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*BusControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*AutomationTrackControlsBase" style:highest "automation_track_controls_base"
-widget "*AutomationTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
-widget "*EditorMenuBar*" style:highest "black_mackie_menu_bar"
-widget "*MainMenuBar*" style:highest "black_mackie_menu_bar"
-widget "*ZoomClickBox" style:highest "medium_bold_entry"
-widget "*PluginParameterLabel" style:highest "medium_text"
-widget "*PluginNameInfo" style:highest "plugin_name_text"
-widget "*PluginMakerInfo" style:highest "plugin_maker_text"
-widget "*PluginParameterInfo" style:highest "medium_text"
-widget "*MotionControllerValue" style:highest "medium_entry"
-widget "*ParameterValueDisplay" style:highest "medium_bold_entry"
-widget "*PluginUIClickBox" style:highest "medium_bold_entry"
-widget "*PluginUIClickBox*" style:highest "medium_bold_entry"
-widget "*PluginSlider" style:highest "plugin_slider"
-widget "*RedirectSelector" style:highest "redirect_list_display"
-widget "*RedirectSelector.*" style:highest "redirect_list_display"
-widget "*EditGroupDisplay" style:highest "treeview_display"
-widget "*TrackListDisplay" style:highest "treeview_display"
-widget "*RegionListDisplay" style:highest "treeview_display"
-widget "*NamedSelectionDisplay" style:highest "treeview_display"
-widget "*SnapshotDisplay" style:highest "treeview_display"
-widget "*MixerTrackCommentArea" style:highest "option_entry"
-widget "*MixerPanZone" style:highest "pan_zone"
-widget "*MixerTrackDisplayList" style:highest "treeview_display"
-widget "*MixerSnapshotDisplayList" style:highest "treeview_display"
-widget "*MixerAuxDisplayList" style:highest "treeview_display"
-widget "*MixerGroupList" style:highest "treeview_display"
-widget "*RegionEditorLabel" style:highest "medium_text"
-widget "*RegionEditorSmallLabel" style:highest "small_text"
-widget "*RegionEditorEntry" style:highest "medium_entry"
-widget "*RegionEditorClock" style:highest "default_clock_display"
-widget "*RegionEditorToggleButton" style:highest "paler_red_when_active"
-widget "*RegionEditorToggleButton*" style:highest "paler_red_when_active"
-widget "*MixerStripSpeedBase" style:highest "small_entry"
-widget "*MixerStripSpeedBase*" style:highest "small_entry"
-widget "*MixerStripSpeedBaseNotOne" style:highest "small_red_on_black_entry"
-widget "*MixerStripSpeedBaseNotOne*" style:highest "small_red_on_black_entry"
-widget "*MixerStripGainDisplay" style:highest "small_entry"
-widget "*MixerStripGainDisplay*" style:highest "small_entry"
-widget "*MixerStripGainUnitButton" style:highest "very_small_button"
-widget "*MixerStripGainUnitButton*" style:highest "very_small_button"
-widget "*MixerStripMeterPreButton" style:highest "very_small_button"
-widget "*MixerStripMeterPreButton*" style:highest "very_small_button"
-widget "*MixerStripPeakDisplay*" style:highest "red_active_small_entry"
-widget "*MixerStripPeakDisplayPeak*" style:highest "peak_display_peaked_entry"
-widget "*MixerStripSelectedFrame" style:highest "selected_strip_frame"
-widget "*MixerStripFrame" style:highest "base_frame"
-widget "*HWMonitorButton" style:highest "red_when_active"
-widget "*HWMonitorButton*" style:highest "red_when_active"
-widget "*BypassButton" style:highest "red_when_active"
-widget "*BypassButton*" style:highest "red_when_active"
-widget "*TransportSoloAlert" style:highest "flashing_alert"
-widget "*TransportSoloAlert.*" style:highest "flashing_alert"
-widget "*TransportAuditioningAlert" style:highest "flashing_alert"
-widget "*TransportAuditioningAlert.*" style:highest "flashing_alert"
-widget "*FadeCurve" style:highest "medium_bold_entry"
-widget "*FadeCurve*" style:highest "medium_bold_entry"
-widget "*IOSelectorButton" style:highest "default_buttons_menus"
-widget "*IOSelectorButton*" style:highest "default_buttons_menus"
-widget "*IOSelectorList" style:highest "medium_entry_noselection_fg"
-widget "*IOSelectorPortList" style:highest "io_selector_port_list"
-widget "*IOSelectorPortList.*" style:highest "io_selector_port_list"
-widget "*IOSelectorPortListSelected" style:highest "selected_io_selector_port_list"
-widget "*IOSelectorPortListSelected.*" style:highest "selected_io_selector_port_list"
-widget "*IOSelectorNotebook" style:highest "io_selector_notebook"
-widget "*IOSelectorNotebookTab" style:highest "io_selector_notebook"
-widget "*IOSelectorFrame" style:highest "base_frame"
-widget "*ConnectionEditorButton" style:highest "default_buttons_menus"
-widget "*ConnectionEditorButton*" style:highest "default_buttons_menus"
-widget "*ConnectionEditorList" style:highest "medium_entry_noselection_fg"
-widget "*ConnectionEditorConnectionList" style:highest "medium_entry"
-widget "*ConnectionEditorPortList" style:highest "io_selector_port_list"
-widget "*ConnectionEditorPortListSelected" style:highest "selected_io_selector_port_list"
-widget "*ConnectionEditorNotebook" style:highest "io_selector_notebook"
-widget "*ConnectionEditorNotebookTab" style:highest "io_selector_notebook"
-widget "*ConnectionEditorFrame" style:highest "base_frame"
-widget "*RouteParamsListDisplay" style:highest "inspector_track_list_display"
-widget "*RouteParamsPreListDisplay" style:highest "inspector_redirect_list_display"
-widget "*RouteParamsPostListDisplay" style:highest "inspector_redirect_list_display"
-widget "*TearOffArrow" style:highest "tearoff_arrow"
-widget "*RouteParamsTitleButton" style:highest "medium_text"
-widget "*RouteParamsTitleLabel" style:highest "medium_text"
-widget "*PluginAutomateRecordButton" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomateRecordButton*" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomatePlayButton" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomatePlayButton*" style:highest "small_red_active_and_selected_button"
-widget "*PluginAutomateButton" style:highest "small_button"
-widget "*PluginAutomateButton*" style:highest "small_button"
-widget "*PluginSaveButton" style:highest "small_button"
-widget "*PluginSaveButton*" style:highest "small_button"
-widget "*PluginLoadButton" style:highest "small_button"
-widget "*PluginLoadButton*" style:highest "small_button"
-widget "*FaderMetricsStrip" style:highest "meter_metrics_strip"
-widget "*MeterMetricsStrip" style:highest "meter_metrics_strip"
-widget "*MetricDialogFrame" style:highest "base_frame"
-widget "*MetricEntry" style:highest "medium_bold_entry"
-widget "*MetricButton" style:highest "default_buttons_menus"
-widget "*MetricButton.*" style:highest "default_buttons_menus"
-widget "*MetricLabel" style:highest "medium_text"
-widget "*TimeStretchButton" style:highest "default_buttons_menus"
-widget "*TimeStretchButton.*" style:highest "default_buttons_menus"
-widget "*TimeStretchProgress" style:highest "default_buttons_menus"
-widget "*ChoiceWindow" style:highest "default_buttons_menus"
-widget "*ChoicePrompt" style:highest "default_buttons_menus"
-widget "*ChoiceButton" style:highest "default_buttons_menus"
-widget "*ChoiceButton*" style:highest "default_buttons_menus"
-widget "*SelectionModeButton" style:highest "default_buttons_menus"
-widget "*SelectionModeButton*" style:highest "default_buttons_menus"
-widget "*TrackLabel" style:highest "medium_text"
-widget "*TrackPlugName" style:highest "medium_text"
-widget "*TrackParameterName" style:highest "small_text"
-widget "*AddRouteDialog*" style:highest "medium_text"
-widget "*AddRouteDialog.GtkLabel" style:highest "medium_text"
-widget "*AddRouteDialogChannelChoice" style:highest "medium_bold_entry"
-widget "*AddRouteDialogSpinner" style:highest "medium_bold_entry"
-widget "*AddRouteDialogSpinner*" style:highest "medium_bold_entry"
-widget "*AddRouteDialogRadioButton" style:highest "red_when_active"
-widget "*AddRouteDialogButton" style:highest "default_buttons_menus"
-widget "*AddRouteDialogNameTemplateEntry" style:highest "medium_bold_entry"
-widget "*NewSessionIOLabel" style:highest "larger_bold_text"
-widget "*NewSessionSR1Label" style:highest "red_medium_text"
-widget "*NewSessionSR2Label" style:highest "medium_text"
-widget "*NewSessionChannelChoice" style:highest "medium_bold_entry"
-widget "*NewSessionMainButton" style:highest "larger_bold_text"
-widget "*NewSessionMainButton*" style:highest "larger_bold_text"
-widget "*NewSessionMainLabel" style:highest "larger_bold_text"
-widget "*LocationEditRowClock" style:highest "location_rows_clock"
-widget "*LocationEditNameLabel" style:highest "medium_text"
-widget "*LocationEditSetButton" style:highest "location_row_button"
-widget "*LocationEditSetButton*" style:highest "location_row_button"
-widget "*LocationEditGoButton" style:highest "location_row_button"
-widget "*LocationEditGoButton*" style:highest "location_row_button"
-widget "*LocationEditCdButton" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditCdButton*" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditHideButton" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditHideButton*" style:highest "small_red_active_and_selected_button"
-widget "*LocationEditNumberLabel" style:highest "small_text"
-widget "*LocationLocEditorFrame" style:highest "base_frame"
-widget "*LocationRangeEditorFrame" style:highest "base_frame"
-widget "*LocationEditNameEntry" style:highest "option_entry"
-widget "*LocationAddLocationButton" style:highest "default_buttons_menus"
-widget "*LocationAddLocationButton*" style:highest "default_buttons_menus"
-widget "*LocationAddRangeButton" style:highest "default_buttons_menus"
-widget "*LocationAddRangeButton*" style:highest "default_buttons_menus"
-widget "*LocationEditRemoveButton" style:highest "location_row_button"
-widget "*LocationEditRemoveButton*" style:highest "location_row_button"
-widget "*PanSlider" style:highest "pan_slider"
-widget "*PanningLinkButton" style:highest "mixer_red_active_button"
-widget "*PanningLinkButton.*" style:highest "mixer_red_active_button"
-widget "*PanningLinkDirectionButton" style:highest "very_small_button"
-widget "*PanningLinkDirectionButton.*" style:highest "very_small_button"
-widget "*ChannelCountSelector" style:highest "medium_bold_entry"
-widget "*ChannelCountSelector.GtkArrow" style:highest "default_buttons_menus"
-widget "*RegionListWholeFile" style:highest "treeview_parent_node"
-widget "*EditorHScrollbar" style:highest "editor_hscrollbar"
-
diff --git a/tools/osx_packaging/ardour3_mac_ui.rc b/tools/osx_packaging/ardour3_mac_ui.rc
new file mode 100644 (file)
index 0000000..f265755
--- /dev/null
@@ -0,0 +1,1496 @@
+#
+# This is the GTK style file for Ardour
+#
+#
+
+style "very_small_text"
+{
+       font_name = "sans 9"
+}
+
+style "small_text"
+{
+       font_name = "sans 10"
+}
+
+style "small_bold_text"
+{
+       font_name = "@SANS_BOLD_Big@"
+}
+
+style "medium_bold_text"
+{
+       font_name = "@SANS_BOLD_BIG@"
+}
+
+style "medium_text"
+{
+       font_name = "sans 11"
+}
+
+style "red_medium_text" = "medium_text"
+{      
+       fg[NORMAL] = { 1.0, 0, 0 }
+       fg[ACTIVE] = { 1.0, 0, 0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+}
+
+
+style "large_text"
+{
+       font_name = "sans 18"
+}
+
+style "larger_bold_text"
+{
+       font_name = "sans bold 14"
+}
+
+style "plugin_name_text"
+{
+       font_name = "sans bold 25"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+}
+
+style "plugin_maker_text"
+{
+       font_name = "sans bold 14"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+}
+
+style "automation_track_name"
+{
+       font_name = "sans italic 8"
+}
+
+style "first_action_message" 
+{
+       font_name = "sans medium 34"
+}
+
+style "verbose_canvas_cursor"
+{
+       font_name = "sans bold 24"
+}
+
+style "marker_text" 
+{
+       font_name = "sans 9"
+}
+
+style "time_axis_view_item_name"
+{
+       font_name = "sans 10"
+}
+
+style "default_base" = "medium_text"
+{
+  GtkWidget::cursor_color =  {1.0, 1.0, 1.0 }
+  GtkButton::default_border = { 0, 0, 0, 0 }
+  GtkButton::default_outside_border = { 0, 0, 0, 0 }
+  GtkTreeView::vertical-padding = 0
+  GtkTreeView::horizontal-padding = 0
+  GtkTreeView::even-row-color = { 0, 0, 0 }
+  GtkTreeView::odd-row-color = { 0, 0, 0 }
+  
+  fg[NORMAL] = { 0.80, 0.80, 0.80 }    
+  fg[ACTIVE] = { 0.80, 0.80, 0.80 }    
+  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
+  fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }       
+  fg[SELECTED] = { 0.80, 0.80, 0.80 }  
+  
+  bg[NORMAL] = { 0.35, 0.35, 0.40 }
+  bg[ACTIVE] = { 0.35, 0.35, 0.40 }
+  bg[PRELIGHT] = "#565690"
+  bg[INSENSITIVE] = { 0.10, 0.10, 0.10 }
+  bg[SELECTED] = { 0, 0.40, 0.60 }
+  
+  text[NORMAL] = { 0.80, 0.80, 0.80 }  
+  text[ACTIVE] = { 0.80, 0.80, 0.80 }  
+  text[PRELIGHT] = { 0.80, 0.80, 0.80 }        
+  text[INSENSITIVE] = { 0.80, 0.80, 0.80}      
+  text[SELECTED] = { 1.0, 1.0, 1.0 }
+  
+  base[ACTIVE]     = "#272a2f"
+  base[NORMAL]      =  "#1a1e20"
+  base[PRELIGHT]     = { 0.20, 0.20, 0.20 }
+  base[INSENSITIVE]  = "#4c5159"
+  base[SELECTED]     = { 0.25, 0.25, 0.25 }
+
+  engine "clearlooks" 
+  {
+    menubarstyle      = 2       # 0 = flat, 1 = sunken, 2 = flat gradient
+    menuitemstyle     = 1       # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button)
+    listviewitemstyle = 1       # 0 = flat, 1 = 3d-ish (gradient)
+    progressbarstyle  = 1       # 0 = candy bar, 1 = fancy candy bar, 2 = flat
+  }
+}
+
+style "base_frame"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+}
+
+style "transport_base" = "medium_bold_text"
+{
+  bg[NORMAL] = { 0.10, 0.10, 0.10 }
+  bg[ACTIVE] = { 0, 0, 0 }
+  bg[PRELIGHT] = { 0, 0, 0 }
+  bg[INSENSITIVE] = { 0, 0, 0 }
+  bg[SELECTED] = { 0, 0, 0 }
+}
+
+style "black_mackie_menu_bar"
+{
+  font_name = "sans bold 11"
+  fg[NORMAL] = { 1.0, 1.0, 1.0 }
+  bg[NORMAL] = { 0, 0, 0 }
+}
+
+style "default_buttons_menus" 
+{
+  font_name = "sans 11"
+  fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+  
+  bg[NORMAL] = { 0.30, 0.30, 0.35 }
+  bg[ACTIVE] = "#565690"
+  bg[PRELIGHT] = { 0.15, 0.15, 0.20 }
+  bg[INSENSITIVE] = { 0.15, 0.15, 0.20 }
+  bg[SELECTED] = { 0.15, 0.15, 0.20 }  
+}
+
+style "very_small_button" = "default_buttons_menus"
+{
+       font_name = "sans 8"
+       ythickness = 0
+       xthickness = 0
+}
+
+style "small_button" = "default_buttons_menus"
+{
+}
+
+style "very_small_red_active_and_selected_button" = "very_small_button"
+{
+       bg[ACTIVE] = { 1.0, 0, 0}
+       bg[SELECTED] = { 1.0, 0, 0}
+}
+
+style "small_red_active_and_selected_button" = "small_button"
+{
+       fg[ACTIVE] = { 0, 0, 0 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+       bg[SELECTED] = { 1.0, 0, 0}
+}
+
+style "gain_fader"
+{
+       bg[NORMAL] =   { 0.269, 0.269, 0.300}
+       bg[ACTIVE] =   { 0.152, 0.152, 0.168 }
+}
+
+
+style "track_rec_enable_button" = "small_button"
+{
+}
+
+style "track_rec_enable_button_active" = "small_button"
+{
+       fg[SELECTED] = { 0.0, 0.0, 0.0 }
+       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
+       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
+       fg[NORMAL] = { 0.0, 0.0, 0.0 }
+
+       bg[NORMAL] =   { 1.0, 0.0, 0.0 }
+       bg[ACTIVE] =   { 1.0, 0.0, 0.0 }
+       bg[SELECTED] =   { 1.0, 0.0, 0.0 }
+       bg[PRELIGHT] =   { 1.0, 0.0, 0.0 }
+}
+
+style "track_rec_enable_button_alternate" = "small_button"
+{
+       fg[SELECTED] = { 0.0, 0.0, 0.0 }
+       fg[ACTIVE] =   { 0.0, 0.0, 0.0 }
+       fg[PRELIGHT] = { 0.0, 0.0, 0.0 }
+       fg[NORMAL] = { 0.0, 0.0, 0.0 }
+
+       bg[NORMAL] =   { 0.91, 0.68, 0.68}
+       bg[ACTIVE] =   { 0.91, 0.68, 0.68}
+       bg[SELECTED] =   { 0.91, 0.68, 0.68}
+       bg[PRELIGHT] =   { 0.91, 0.68, 0.68}
+}
+
+style "mixer_track_rec_enable_button" = "track_rec_enable_button"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_track_rec_enable_button_alternate" = "track_rec_enable_button_alternate"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_track_rec_enable_button_active" = "track_rec_enable_button_active"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "solo_button" = "small_button"
+{
+}
+
+style "solo_button_alternate" = "small_button"
+{
+       bg[NORMAL] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[ACTIVE] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[SELECTED] = { 0.19, 0.97, 0.69 } # solo-safe
+       bg[PRELIGHT] = { 0.19, 0.97, 0.69 } # solo-safe
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+
+style "solo_button_active" = "small_button"
+{
+       bg[NORMAL] = { 0.66, 0.97, 0.19 }   # solo
+       bg[ACTIVE] = { 0.66, 0.97, 0.19 }   # solo
+       bg[SELECTED] = { 0.66, 0.97, 0.19 }   # solo
+       bg[PRELIGHT] = { 0.66, 0.97, 0.19 }   # solo
+
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mixer_solo_button" = "solo_button"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_solo_button_alternate" = "solo_button_alternate"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+style "mixer_solo_button_active" = "solo_button_active"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+
+style "mute_button" = "small_button"
+{
+}
+
+style "mute_button_alternate" = "small_button"
+{
+       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
+       bg[NORMAL] = { 1.0, 0.98, 0.53 }
+       bg[SELECTED] = { 1.0, 0.98, 0.53 }
+       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
+
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mute_button_active" = "small_button"
+{
+       bg[NORMAL] = { 0.90, 0.89, 0.73 }
+       bg[ACTIVE] = { 0.90, 0.89, 0.73 }
+       bg[PRELIGHT] = { 0.90, 0.89, 0.73 }
+       bg[SELECTED] = { 0.90, 0.89, 0.73 }
+
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+}
+
+style "mixer_mute_button" = "mute_button"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button_alternate" = "mute_button_alternate"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button_active" = "mute_button_active"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "multiline_combo" = "small_button"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "mixer_mute_button" = "mute_button"
+{
+       font_name = "sans 8"
+       xthickness = 0
+       ythickness = 0
+}
+
+style "track_loop_button" = "small_button"
+{
+       bg[ACTIVE] = { 1.0, 0.98, 0.53 }
+       bg[PRELIGHT] = { 1.0, 0.98, 0.53 }
+
+}
+
+style "mixer_red_active_button" = "very_small_button"
+{
+       fg[ACTIVE] = { 0, 1.0, 1.0 }
+       bg[ACTIVE] = { 0.7, 0, 0 }
+
+       base[INSENSITIVE] = { 0.16, 0.16, 0.21 }
+       bg[INSENSITIVE] = { 0.16, 0.16, 0.21 }
+}
+
+style "time_button" = "default_buttons_menus"
+{
+       font_name = "sans 10"
+}
+
+style "transport_button"
+{
+}
+
+style "transport_button_active"
+{
+       bg[NORMAL] = { 0.50, 1.0, 0.50 }
+       bg[ACTIVE] = { 0.50, 1.0, 0.50 }
+       bg[SELECTED] = { 0.50, 1.0, 0.50 }
+       bg[PRELIGHT] = { 0.50, 1.0, 0.50 }
+
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       fg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "transport_rec_button"
+{
+}
+
+style "transport_rec_button_active"
+{
+       bg[ACTIVE] = { 1.0, 0, 0 }
+       bg[NORMAL] = { 1.0, 0, 0 }
+       bg[SELECTED] = { 1.0, 0, 0 }
+       bg[PRELIGHT] = { 1.0, 0, 0 }
+}
+
+style "transport_rec_button_alternate"
+{
+       bg[PRELIGHT] = { 0.91, 0.68, 0.68 }
+       bg[NORMAL] = { 0.91, 0.68, 0.68 }
+       bg[SELECTED] = { 0.91, 0.68, 0.68 }
+       bg[ACTIVE] = { 0.91, 0.68, 0.68 }
+}
+
+style "shuttle_control" = "very_small_text"
+{
+       fg[NORMAL] = { 0.85, 0.92, 0.98 }
+       fg[ACTIVE] = { 0.85, 0.92, 0.98 }
+       fg[PRELIGHT] = { 0.85, 0.92, 0.98 }
+       fg[SELECTED] = { 0.85, 0.92, 0.98 }
+       fg[INSENSITIVE] = { 0.85, 0.92, 0.98 }
+
+       bg[NORMAL] = { 0.26, 0.26, 0.31 }
+       bg[PRELIGHT] = { 0.26, 0.26, 0.31 }
+       bg[INSENSITIVE] = { 0.26, 0.26, 0.31 }
+       bg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       bg[SELECTED] = { 1.0, 0.04, 0.04 }
+}
+
+style "ardour_adjusters" = "default_buttons_menus"
+{
+       bg[NORMAL] = { 0.60, 0.60, 0.60 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.06, 0.06, 0.06 }
+}
+
+style "editor_hscrollbar" = "ardour_adjusters"
+{
+       #
+       # special case: we want this scrollbar to be as tall as the
+       # zoom focus selector combobox. scrollbars don't expand to
+        # fill the space available to them, so we have to explicitly
+       # make it bigger.
+       # 
+       GtkRange::slider_width = 27
+        GtkScrollbar::slider_width = 27
+}
+
+style "ardour_progressbars" = "default_buttons_menus"
+{ 
+  bg[NORMAL] = { 0, 0, 0 }
+  bg[PRELIGHT] = { 0.00, 0.36, 0.40 }
+}
+
+style "options_window"  = "default_base"
+{
+       font_name = "sans 11"
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "option_entry"  = "default_base"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       fg[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       
+       base[INSENSITIVE] = { 0.07, 0.07, 0.12 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       bg[ACTIVE] = { 0.35, 0.35, 0.40 }
+}
+
+style "red_when_active" = "medium_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.26, 0.26, 0.31 }
+
+       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+}
+
+style "xrun_warn"  
+{
+       font_name = "sans bold 18"
+
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       text[NORMAL] = { 1.0, 1.0, 1.0 }
+       text[ACTIVE] = { 1.0, 1.0, 1.0 }
+       base[NORMAL] = { 0.09, 0.48, 0.46 }
+       base[ACTIVE] = { 0.09, 0.48, 0.46 }
+       bg[NORMAL] = { 1.0, 0.48, 0.46 }
+       bg[ACTIVE] = { 0.09, 1.0, 0.46 }
+}
+
+style "menu_bar_base" = "default_base"
+{
+       bg[NORMAL] = { 0.2, 0.2, 0.3 }
+       bg[ACTIVE] = { 0, 0, 0 }
+       bg[PRELIGHT] = { 0, 0, 0 }
+       bg[INSENSITIVE] = { 0, 0, 0 }
+       bg[SELECTED] = { 0, 0, 0 }
+}
+
+style "fatal_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 1.0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "error_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "info_message" = "medium_text"
+{
+   fg[ACTIVE] = { 1.0, 0, 0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0,0,0 }
+   bg[NORMAL] = { 0,0,0 }
+   base[ACTIVE] = { 0,0,0 }
+   base[NORMAL] = { 0,0,0 }
+}
+
+style "warning_message" = "medium_text"
+{
+   fg[ACTIVE] = { 0.30,0.30, 1.0 }
+   fg[NORMAL] = { 0.80, 0.80, 0.80 }
+   bg[ACTIVE] = { 0, 0, 0 }
+   bg[NORMAL] = { 0, 0, 0 }
+   base[ACTIVE] = { 0, 0, 0 }
+   base[NORMAL] = { 0, 0, 0 }
+}
+
+style "medium_entry" = "medium_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0.70, 0.70, 0.70 }
+}
+
+style "medium_entry_noselection_fg" = "medium_entry"
+{
+       fg[SELECTED] = { 0.50, 1.0, 0.50 }
+}
+
+style "medium_entry_noselection_bg" = "medium_entry"
+{
+       bg[SELECTED] = { 1.0, 1.0, 1.0 }
+}
+
+style "medium_bold_entry"  = "medium_bold_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "small_entry" = "small_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0, 1.0, 0 }
+       fg[SELECTED] = { 0, 1.0, 0 }
+       text[NORMAL] = { 0.70, 0.70, 0.70 }
+       text[ACTIVE] = { 0, 1.0, 0 }
+       text[SELECTED] = { 0, 1.0, 0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[SELECTED] = { 0.0, 0.0, 0.0 }
+       bg[SELECTED] = { 0.0, 0.0, 0.0 }
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "red_active_small_entry" = "small_entry"
+{
+       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+}
+
+style "small_bold_entry" = "small_bold_text"
+{
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+       
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "small_red_on_black_entry"  = "small_bold_text"
+{
+       fg[NORMAL] = { 1.0, 0, 0 }
+       fg[ACTIVE] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
+}
+
+style "non_recording_big_clock_display" = "medium_entry"
+{
+       font_name = "sans 60"
+
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       fg[PRELIGHT] = { 1.0, 0, 0.0 }
+       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
+       
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.7, 0.0, 0.0 }  
+}
+
+style "recording_big_clock_display" = "non_recording_big_clock_display"
+{
+       fg[NORMAL] = { 1.0, 0, 0 }
+}
+
+style "transport_clock_display"
+{
+       font_name = "sans bold 14"
+       
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       fg[PRELIGHT] = { 1.0, 0, 0.0 }
+       fg[INSENSITIVE] = { 1.0, 0, 0.0 }
+       
+       base[NORMAL] = { 0.0, 0.0, 0.0 }
+       base[ACTIVE] = { 0.0, 0.0, 0.0 }
+       bg[NORMAL] = { 0.0, 0.0, 0.0 }
+       bg[ACTIVE] = { 0.0, 0.0, 0.0 }
+}
+
+style "tempo_meter_clock_display"
+{
+       font_name = "sans 8"
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0.0, 0.48, 1.0 }
+       base[ACTIVE] = { 0.09, 0.98, 0.46 }
+       bg[NORMAL] = { 0.0, 0.48, 1.0 }
+       bg[ACTIVE] = { 0.09, 0.98, 0.46 }
+}
+
+style "default_clock_display" = "medium text"
+{
+       fg[NORMAL] = { 0.50, 1.0, 0.50 }
+       fg[ACTIVE] = { 1.0, 0.0, 0.0 }
+       fg[SELECTED] = { 1.0, 0, 0 }
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       bg[NORMAL] = { 0, 0, 0 }
+       bg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "editor_time_ruler" = "small_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.09, 0.09, 0.09 }
+}
+
+style "audio_track_base" = "default_base"
+{
+  font_name = "sans 8"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  bg[NORMAL] = { 0.18, 0.19, 0.22 }
+  bg[ACTIVE] = { 0.20, 0.20, 0.20 }    
+  bg[PRELIGHT] = { 0.20, 0.20, 0.20 }
+  bg[INSENSITIVE] = { 0.20, 0.20, 0.20 }
+  bg[SELECTED] = { 0.20, 0.20, 0.20 }
+}
+
+style "audio_bus_base"
+{
+  font_name = "sans 8"
+  fg[NORMAL] = { 0.77, 0.77, 0.72 }    
+  fg[NORMAL] = { 0.7, 0.8, 0.2 }       
+  #bg[NORMAL] = {0, 0.36, 0.40 }
+  bg[NORMAL] = "#444466"       
+}
+
+style "track_name_display"
+{
+       font_name = "sans medium 11"
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
+
+       base[NORMAL] = { 0.06, 0.06, 0.06 }
+       base[ACTIVE] = { 0.26, 0.26, 0.26 }
+       bg[NORMAL] = { 0.26, 0.26, 0.26 }
+       bg[ACTIVE] = { 0.26, 0.26, 0.26 }
+}
+
+style "active_track_name_display"
+{
+       font_name = "sans medium 11"
+       text[NORMAL] = { 0.26, 0.26, 0.26 }
+       base[NORMAL] = { 0.89, 0.89, 0.89 }
+}
+
+style "track_separator"
+{
+       bg[NORMAL] = { 0.35, 0.35, 0.40 }
+}
+
+#
+# Track edit groups. These styles define
+# the colors that the "edit" button will
+# use as a track is moved from
+# track edit group to track edit group.
+# There are 8 edit groups. Edit group 0
+# is used for tracks that are not editable, 
+# so we leave its style to the default.
+#
+
+style "edit_group_0"
+
+{
+       bg[ACTIVE] = { 1.0, 0.65, 0.13 }
+       bg[NORMAL] = { 0.31, 0.31, 0.31 }
+       fg[NORMAL] = { 0.82, 0.91, 0.99 }
+       fg[ACTIVE] = { 0, 0, 0 }
+}
+
+style "edit_group_1" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "edit_group_2" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "edit_group_3" 
+{
+       fg[NORMAL] = { 0, 0, 0 }
+       fg[PRELIGHT] = { 0, 0, 0 }
+       fg[SELECTED] = { 0, 0, 0 }
+       bg[NORMAL] = { 0.93, 0.34, 0.08 }
+       bg[PRELIGHT] = { 0.93, 0.34, 0.08 }
+       bg[SELECTED] = { 0.93, 0.34, 0.08 }
+}
+
+style "treeview_parent_node"
+{
+       # specifies *just* the color used for whole file rows when not selected
+       fg[NORMAL] = { 0.0, 0.6, 0.85 }
+}
+
+style "treeview_display" = "small_bold_text"
+{
+       # expander arrow border and DnD "icon" text
+       fg[NORMAL] = { 0.8, 0.8, 0.8 } 
+
+       # background with no rows or no selection, plus
+       # expander arrow core and DnD "icon" background
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+
+       # selected row bg when window does not have focus (including during DnD)
+       base[ACTIVE] = { 0.0, 0.60, 0.60 }    
+
+       # selected row bg when window has focus
+       base[SELECTED] = { 0, 0.75, 0.75 }
+
+       # row text when in normal state and not a parent
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+
+       # selected row text with window focus
+       text[SELECTED] = { 0, 1.0, 1.0 }  
+
+       # selected row text without window focus (including during DnD)
+       text[ACTIVE] = { 0, 1.0, 1.0 }  
+}
+
+style "main_canvas_area"
+{
+       bg[NORMAL] = { 0.30, 0.30, 0.34 }
+       bg[ACTIVE] = { 0.30, 0.30, 0.34 }
+       bg[INSENSITIVE] = { 0.30, 0.30, 0.34 }
+       bg[SELECTED] = { 0.30, 0.30, 0.34 }
+       bg[PRELIGHT] = { 0.30, 0.30, 0.34 }
+}
+
+style "track_controls_inactive"
+{
+       bg[NORMAL] =      { 0.60, 0.60, 0.66 }
+       bg[ACTIVE] =      { 0.60, 0.60, 0.66 }
+       bg[INSENSITIVE] = { 0.60, 0.60, 0.66 }
+       bg[SELECTED] =    { 0.60, 0.60, 0.66 }
+       bg[PRELIGHT] =    { 0.60, 0.60, 0.66 }
+
+       font_name = "sans medium 10"
+       fg[NORMAL] = { 0.7, 0.8, 0.2 }  
+}
+
+style "edit_controls_base_selected"
+{
+       bg[NORMAL] = { 0.60, 0.54, 0.60 }
+       bg[ACTIVE] = { 0.60, 0.54, 0.60 }
+       bg[INSENSITIVE] = { 0.60, 0.54, 0.60 }
+       bg[SELECTED] = { 0.60, 0.54, 0.60 }
+       bg[PRELIGHT] = { 0.60, 0.54, 0.60 }
+}
+
+style "automation_track_controls_base"
+{
+       bg[NORMAL] = { 0.22, 0.22, 0.29 }
+       bg[ACTIVE] = { 0.22, 0.22, 0.29 }
+       bg[INSENSITIVE] = { 0.22, 0.22, 0.29 }
+       bg[SELECTED] = { 0.22, 0.22, 0.29 }
+       bg[PRELIGHT] = { 0.22, 0.22, 0.29 }
+}
+
+# Plugin Editors
+style "plugin_slider" 
+{
+       font_name ="@SANS_BOLD_Big@"
+
+       # the slider itself. the inactive part is INSENSITIVE,
+       # the active part is something else.
+
+       fg[NORMAL] = { 0.37, 0.43, 0.52 }
+       fg[ACTIVE] = { 0.37, 0.43, 0.52 }
+       fg[INSENSITIVE] = {0.35, 0.35, 0.40 } # matches default_base
+       fg[SELECTED] = { 0.37, 0.43, 0.52 }
+       fg[PRELIGHT] = { 0.37, 0.43, 0.52 }
+
+       # draws the outer rectangle around the slider
+
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[INSENSITIVE] = {0.80, 0.80, 0.80 }
+       bg[SELECTED] = { 0.80, 0.80, 0.80 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+
+       # the numeric display
+
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.80, 0.80, 0.80 }
+       text[INSENSITIVE] = { 0.80, 0.80, 0.80 }
+       text[SELECTED] = { 0.80, 0.80, 0.80 }
+       text[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "track_list_display" = "small_bold_text"
+{
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.3, 0.3, 0.3 }
+       text[INSENSITIVE] = { 0, 0, 0 }
+       text[SELECTED] = { 0.8, 0.8, 0.8 }
+
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[INSENSITIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+}
+
+style "inspector_track_list_display" = "track_list_display"
+{
+       text[ACTIVE] = { 0.8, 0.8, 0.8 }
+
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0.2, 0.2, 0.2 }
+       base[INSENSITIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0.3, 0.3, 0.4 }
+}
+
+style "redirect_list_display"
+{
+       GtkTreeView::horizontal-separator = 0
+       GtkTreeView::vertical-separator = 0
+
+       font_name = "sans 10"
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[ACTIVE] = { 0.70, 0.70, 0.70 }
+       text[INSENSITIVE] = { 0, 0, 0 }
+       text[SELECTED] = { 0.9, 0.3, 0.3 }
+
+       base[NORMAL] = { 0, 0, 0 }
+       base[ACTIVE] = { 0, 0, 0 }
+       base[INSENSITIVE] = { 0, 0, 0 }
+       base[SELECTED] = { 0, 0, 0 }
+
+       # these two are explicitly used by the cell renderer for the
+        # text
+
+       fg[NORMAL] = { 0.5, 0.5, 0.5 }  # used for inactive
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }  # used for active
+}
+
+style "inspector_redirect_list_display" = "redirect_list_display"
+{
+       base[SELECTED] = { 0.3, 0.3, 0.3 }
+}
+
+# MixerPanZone:
+#
+# the NORMAL fg color is used for the pan puck
+# the ACTIVE fg color is used for the speaker boxes
+
+style "pan_zone" = "default_base"
+{
+       fg[NORMAL] = { 0.34, 0.95, 0.92 }
+       fg[ACTIVE] = { 0.95, 0.48, 0.11 }
+}
+
+style "paler_red_when_active" = "medium_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.31, 0.31, 0.31 }
+       bg[PRELIGHT] = { 0.31, 0.31, 0.31 }
+
+       fg[ACTIVE] = { 0.36, 0.46, 0.28 }
+       bg[ACTIVE] = { 1.00, 0.59, 0.59}
+}
+
+style "peak_display_peaked_entry" = "small_text"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+       fg[ACTIVE] = { 1.0, 1.0, 1.0 }
+       fg[SELECTED] = { 1.0, 1.0, 1.0 }
+
+       bg[NORMAL] = {0.9, 0.0, 0.0 }   
+       bg[ACTIVE] = { 0.9, 0.0, 0.0 }  
+       bg[PRELIGHT] = { 0.9, 0.0, 0.0 }        
+       bg[INSENSITIVE] = { 0.9, 0.0, 0.0 }     
+       bg[SELECTED] = { 0.9, 0.0, 0.0 }        
+       base[NORMAL] = { 0.9, 0.0, 0.0 }        
+       base[ACTIVE] = { 0.9, 0.0, 0.0 }        
+       base[PRELIGHT] = { 0.9, 0.0, 0.0 }      
+       base[INSENSITIVE] = { 0.9, 0.0, 0.0 }   
+       base[SELECTED] = { 0.9, 0.0, 0.0 }      
+}
+
+style "selected_strip_frame"
+{
+       fg[NORMAL] = { 0.74, 0.42, 0.47 }
+       bg[NORMAL] = { 0.79, 0.28, 0.18 }
+}
+
+style "flashing_alert" = "very_small_text"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.26, 0.26, 0.31 }
+
+       fg[ACTIVE] = { 0.80, 0.80, 0.80 }
+       bg[ACTIVE] = { 1.0, 0, 0}
+}
+
+style "selected_io_selector_port_list" = "medium_bold_text"
+{
+
+       GtkTreeView::even-row-color = { 0, 0, 0 }
+       GtkTreeView::odd-row-color = { 0, 0, 0 }
+
+# fg is used to color the fg (text) of the column header button
+
+       fg[NORMAL] = { 0.85, 0.85, 0.85 }
+       fg[SELECTED] = { 0.85, 0.85, 0.85 }
+       fg[ACTIVE] = { 0.85, 0.85, 0.85 }
+       fg[PRELIGHT] = { 0.85, 0.85, 0.85 }
+       fg[INSENSITIVE] = { 0.85, 0.85, 0.85 }
+
+# bg is used used to color the background of the column header button
+
+       bg[NORMAL] = { 0.30, 0.30, 0.35 }
+       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
+       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
+       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
+       bg[SELECTED] = { 0.30, 0.30, 0.35 }
+
+# text is used to color the treeview row text
+
+       text[NORMAL] = { 0.85, 0.85, 0.85 }
+       text[SELECTED] = { 0.85, 0.85, 0.85 }
+
+# base is used to color a treeview with no rows
+
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+       base[ACTIVE] = { 0.20, 0.20, 0.25 }
+       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
+       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
+       base[SELECTED] = { 0.20, 0.20, 0.25 }
+
+}
+
+style "io_selector_port_list" = "medium_text"
+{
+       GtkTreeView::even-row-color = { 0.20, 0.20, 0.25 }
+       GtkTreeView::odd-row-color = { 0.20, 0.20, 0.25 }
+# fg is used to color the fg (text) of the column header button
+
+       fg[NORMAL] = { 0.70, 0.70, 0.70 }
+       fg[SELECTED] = { 0.70, 0.70, 0.70 }
+       fg[ACTIVE] = { 0.70, 0.70, 0.70 }
+       fg[PRELIGHT] = { 0.70, 0.70, 0.70 }
+       fg[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+
+# bg is used used to color the background of the column header button
+
+       bg[NORMAL] = { 0.30, 0.30, 0.35 }
+       bg[ACTIVE] = { 0.30, 0.30, 0.35 }
+       bg[PRELIGHT] = { 0.30, 0.30, 0.35 }
+       bg[INSENSITIVE] = { 0.30, 0.30, 0.35 }
+       bg[SELECTED] = { 0.30, 0.30, 0.35 }
+
+# text is used to color the treeview row text
+
+       text[NORMAL] = { 0.80, 0.80, 0.80 }
+       text[SELECTED] = { 0.80, 0.80, 0.80 }
+
+# base is used to color a treeview with no rows
+
+       base[NORMAL] = { 0.20, 0.20, 0.25 }
+       base[ACTIVE] = { 0.20, 0.20, 0.25 }
+       base[PRELIGHT] = { 0.20, 0.20, 0.25 }
+       base[INSENSITIVE] = { 0.20, 0.20, 0.25 }
+       base[SELECTED] = { 0.20, 0.20, 0.25 }
+}
+
+style "io_selector_notebook" = "default_base"
+{
+       fg[NORMAL] = { 1.0, 1.0, 1.0 }
+        font_name ="sans bold 8"
+}
+
+style "tearoff_arrow" = "medium_bold_entry"
+{
+       fg[NORMAL] = { 0.80, 0.80, 0.80 }
+       fg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+       bg[NORMAL] = { 0.80, 0.80, 0.80 }
+       bg[PRELIGHT] = { 0.80, 0.80, 0.80 }
+}
+
+style "meter_metrics_strip" = "default_base"
+{
+       font_name = "sans 5"
+       fg[NORMAL] = { 1.0, 0.8, 0.2 }  
+}
+
+style "location_row_button" = "default_buttons_menus"
+{
+       font_name = "sans 10"
+}
+
+style "location_rows_clock" = "default_clock_display"
+{
+       font_name = "sans 12"
+}
+
+style "pan_slider" 
+{
+       font_name = "sans 8"
+
+       fg[NORMAL] = { 0.22, 0.73, 0.22 }
+       fg[ACTIVE] = { 0.22, 0.73, 0.22 }
+       fg[INSENSITIVE] = {0.22, 0.53, 0.22 } 
+       fg[SELECTED] = { 0.67, 0.23, 0.22 }
+       fg[PRELIGHT] = { 0.67, 0.23, 0.22 }
+
+       bg[NORMAL] = { 0.05, 0.05, 0.05 }
+       bg[ACTIVE] = { 0, 0, 0 }
+       bg[INSENSITIVE] = {0.12, 0.19, 0.25 } 
+       bg[SELECTED] = { 0, 0, 0 }
+       bg[PRELIGHT] = { 0, 0, 0 }
+
+       text[NORMAL] = { 0.70, 0.70, 0.70 }
+       text[ACTIVE] = { 0.70, 0.70, 0.70 }
+       text[INSENSITIVE] = { 0.70, 0.70, 0.70 }
+       text[SELECTED] = { 0.70, 0.70, 0.70 }
+       text[PRELIGHT] = { 0.70, 0.70, 0.70 }
+
+       # used to draw the triangular indicators 
+
+       base[NORMAL] = { 0.80, 0.80, 0.80 }
+       base[ACTIVE] =  { 0.80, 0.80, 0.80 }
+       base[INSENSITIVE] = {0.6, 0.6, 0.6 }
+       base[SELECTED] = { 0.80, 0.80, 0.80 }
+       base[PRELIGHT] = { 0.80, 0.80, 0.80 }
+
+}
+
+style "ardour_button" ="default_buttons_menus"
+{
+       xthickness = 1
+       ythickness = 1
+}
+
+#---------------------------------------------------------------
+
+class "GtkWidget" style:highest "default_base"
+class "GtkScrollbar" style:highest "ardour_adjusters"
+class "GtkLabel" style:highest "default_buttons_menus"
+class "GtkButton" style:highest "ardour_button"
+class "GtkArrow" style:highest "tearoff_arrow"
+class "GtkProgressBar" style:highest "ardour_progressbars"
+
+widget "*FirstActionMessage" style:highest "first_action_message"
+widget "*VerboseCanvasCursor" style:highest "verbose_canvas_cursor"
+widget "*MarkerText" style:highest "marker_text"
+widget "*TimeAxisViewItemName*" style:highest "time_axis_view_item_name"
+#widget "*ExportProgress" style:highest "default_buttons_menus"
+widget "*ExportFileLabel" style:highest "small_bold_text"
+widget "*ExportFormatLabel" style:highest "medium_bold_text"
+widget "*ExportHeader" style:highest "small_bold_text"
+widget "*ExportFileDisplay" style:highest "medium_entry"
+widget "*ExportFormatDisplay" style:highest "medium_entry"
+widget "*ExportCheckbox" style:highest "small_entry"
+widget "*ExportTrackSelector*" style:highest "medium_entry_noselection_bg"
+widget "*EditModeSelector" style:highest "medium_bold_entry"
+widget "*SnapTypeSelector" style:highest "medium_bold_entry"
+widget "*SnapModeSelector" style:highest "medium_bold_entry"
+widget "*ZoomFocusSelector" style:highest "medium_bold_entry"
+widget "*ArdourContextMenu*" style:highest "default_buttons_menus"
+widget "*EditGroupTitleButton*" style:highest "default_buttons_menus"
+widget "*MixerGroupTitleButton*" style:highest "default_buttons_menus"
+widget "*ErrorLogCloseButton" style:highest "default_buttons_menus"
+widget "*EditorGTKButton*" style:highest "default_buttons_menus" 
+widget "*ToolbarButton" style:highest "default_buttons_menus"
+widget "*ToolbarButton*" style:highest "default_buttons_menus"
+widget "*CrossfadeEditButton" style:highest "default_buttons_menus"
+widget "*CrossfadeEditButton*" style:highest "default_buttons_menus"
+widget "*TrackHistoryButton*" style:highest "default_buttons_menus"
+widget "*TrackSizeButton*" style:highest "default_buttons_menus"
+widget "*TrackPlaylistButton*" style:highest "default_buttons_menus"
+widget "*TrackAutomationButton*" style:highest "default_buttons_menus"
+widget "*TrackGroupButton*" style:highest "default_buttons_menus"
+widget "*TrackMixButton*" style:highest "default_buttons_menus"
+widget "*TrackVisualButton*" style:highest "default_buttons_menus"
+widget "*TrackRemoveButton*" style:highest "default_buttons_menus"
+widget "*BaseButton" style:highest "default_buttons_menus"
+widget "*TakeButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerWidthButton" style:highest "default_buttons_menus"
+widget "*MixerHideButton" style:highest "default_buttons_menus"
+widget "*MixerSendButton" style:highest "default_buttons_menus"
+widget "*MixerSendButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerSendSwitch" style:highest "default_buttons_menus"
+widget "*MixerInsertButton" style:highest "default_buttons_menus"
+widget "*MixerInsertButtonLabel" style:highest "default_buttons_menus"
+widget "*MixerInsertSwitch" style:highest "default_buttons_menus"
+widget "*MixerMonitorInputButton*" style:highest "very_small_button"
+widget "*MixerMonitorInputButton.*" style:highest "very_small_button"
+widget "*MixerIOButton" style:highest "very_small_button"
+widget "*MixerIOButtonLabel" style:highest "very_small_button"
+widget "*AddRouteDialogSpinner" style:highest "ardour_adjusters"
+widget "*AddRouteDialogRadioButton*" style:highest "options_window"
+widget "*OptionsNotebook" style:highest "options_window"
+widget "*OptionEditorToggleButton*" style:highest "options_window"
+widget "*OptionsLabel" style:highest "options_window"
+widget "*OptionEditorAuditionerLabel" style:highest "options_window"
+widget "*OptionsEntry" style:highest "option_entry"
+widget "*InspectorNotebook" style:highest "options_window"
+widget "*NewSessionDialog" style:highest "options_window"
+widget "*NewSessionDialogButton*" style:highest "options_window"
+widget "*MixerSendSwitch*" style:highest "very_small_red_active_and_selected_button"
+widget "*OptionEditorToggleButton" style:highest "small_red_active_and_selected_button"
+widget "*NewSessionDialogButton" style:highest "small_red_active_and_selected_button"
+widget "*RecordEnableButton" style:highest "track_rec_enable_button"
+widget "*RecordEnableButton-active" style:highest "track_rec_enable_button_active"
+widget "*RecordEnableButton-alternate" style:highest "track_rec_enable_button_alternate"
+widget "*MixerRecordEnableButton" style:highest "mixer_track_rec_enable_button"
+widget "*MixerRecordEnableButton-active" style:highest "mixer_track_rec_enable_button_active"
+widget "*MixerRecordEnableButton-alternate" style:highest "mixer_track_rec_enable_button_alternate"
+widget "*MuteButton" style:highest "mute_button"
+widget "*MuteButton-alternate" style:highest "mute_button_alternate"
+widget "*MuteButton-active" style:highest "mute_button_active"
+widget "*MixerMuteButton" style:highest "mixer_mute_button"
+widget "*MixerMuteButton-alternate" style:highest "mixer_mute_button_alternate"
+widget "*MixerMuteButton-active" style:highest "mixer_mute_button_active"
+widget "*SoloButton" style:highest "solo_button"
+widget "*SoloButton-alternate" style:highest "solo_button_alternate"
+widget "*SoloButton-active" style:highest "solo_button_active"
+widget "*MixerSoloButton" style:highest "mixer_solo_button"
+widget "*MixerSoloButton-alternate" style:highest "mixer_solo_button_alternate"
+widget "*MixerSoloButton-active" style:highest "mixer_solo_button_active"
+widget "*TrackLoopButton*" style:highest "track_loop_button"
+widget "*PanAutomationLineSelector*" style:highest "multiline_combo"
+widget "*EditorTimeButton*" style:highest "time_button"
+widget "*MixerPhaseInvertButton*" style:highest "very_small_button"
+widget "*MixerPhaseInvertButton.*" style:highest "very_small_button"
+widget "*MixerAutomationRecordingButton*" style:highest "very_small_button"
+widget "*MixerAutomationRecordingButton.*" style:highest "very_small_button"
+widget "*MixerAutomationModeButton*" style:highest "very_small_button"
+widget "*MixerAutomationModeButton.*" style:highest "very_small_button"
+widget "*MixerAutomationPlaybackButton*" style:highest "very_small_button"
+widget "*MixerAutomationPlaybackButton.*" style:highest "very_small_button"
+widget "*MixerNameButton" style:highest "very_small_button"
+widget "*MixerNameButtonLabel" style:highest "very_small_button"
+widget "*MixerGroupButton" style:highest "very_small_button"
+widget "*MixerGroupButtonLabel" style:highest "very_small_button"
+widget "*MixerCommentButton" style:highest "very_small_button"
+widget "*MixerCommentButton*" style:highest "very_small_button"
+widget "*EditGroupButton" style:highest "very_small_button"
+widget "*EditGroupButtonLabel" style:highest "very_small_button"
+widget "*TransportButton" style:highest "transport_rec_button"
+widget "*TransportButton-active" style:highest "transport_button_active"
+widget "*ShuttleButton" style:highest "transport_button"
+widget "*ShuttleButton*" style:highest "transport_button"
+widget "*ShuttleDisplay" style:highest "transport_button"
+widget "*ShuttleDisplay*" style:highest "transport_button"
+widget "*ShuttleControl" style:highest "shuttle_control"
+widget "*TransportRecButton" style:highest "transport_rec_button"
+widget "*TransportRecButton*" style:highest "transport_rec_button"
+widget "*TransportRecButton-active" style:highest "transport_rec_button_active"
+widget "*TransportRecButton-active*" style:highest "transport_rec_button_active"
+widget "*TransportRecButton-alternate" style:highest "transport_rec_button_alternate"
+widget "*TransportRecButton-alternate*" style:highest "transport_rec_button_alternate"
+widget "*TransportRecButton*" style:highest "transport_rec_button"
+widget "*RecordingXrunWarningWindow" style:highest "xrun_warn"
+widget "*RecordingXrunWarningWindow*" style:highest "xrun_warn"
+widget "*MainMenuBar" style:highest "menu_bar_base"
+widget "*ErrorMessage" style:highest "error_message"
+widget "*FatalMessage" style:highest "fatal_message"
+widget "*InfoMessage" style:highest "info_message"
+widget "*WarningMessage" style:highest "warning_message"
+widget "*BigClockNonRecording" style:highest "non_recording_big_clock_display"
+widget "*BigClockRecording" style:highest "recording_big_clock_display"
+widget "*TransportClockDisplay" style:highest "transport_clock_display"
+widget "*SecondaryClockDisplay" style:highest "transport_clock_display"
+widget "*AudioClockFramesUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockFramesLowerInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockSMPTEUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockSMPTELowerInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockBBTUpperInfo" style:highest "tempo_meter_clock_display"
+widget "*AudioClockBBTLowerInfo" style:highest "tempo_meter_clock_display"
+widget "*SelectionStartClock" style:highest "default_clock_display"
+widget "*SelectionEndClock" style:highest "default_clock_display"
+widget "*EditCursorClock" style:highest "default_clock_display"
+widget "*PreRollClock" style:highest "default_clock_display"
+widget "*PostRollClock" style:highest "default_clock_display"
+widget "*NudgeClock" style:highest "default_clock_display"
+widget "*ZoomRangeClock" style:highest "default_clock_display"
+widget "*SMPTEOffsetClock" style:highest "default_clock_display"
+widget "*TransportLabel" style:highest "small_bold_text"
+widget "*TakeLabel" style:highest "small_bold_text"
+widget "*LocationLabel" style:highest "small_bold_text"
+widget "*WipeLabel" style:highest "small_bold_text"
+widget "*TakeTagLabel" style:highest "small_bold_text"
+widget "*ToolBarLabel" style:highest "small_bold_text"
+widget "*EditorDisplayLabel" style:highest "small_bold_text"
+widget "*NewSessionLabel" style:highest "large_text"
+widget "*GlobalButtonLabel" style:highest "default_buttons_menus"
+widget "*ClickButton" style:highest "medium_entry"
+widget "*RegionNameDisplay" style:highest "medium_entry"
+widget "*PluginDisplay" style:highest "medium_entry"
+widget "*SelectionDisplay" style:highest "medium_entry"
+widget "*HistorySelector" style:highest "medium_entry"
+widget "*LocationSelector" style:highest "medium_entry"
+widget "*TakeSelector" style:highest "medium_entry"
+widget "*RegionSelector" style:highest "medium_entry"
+widget "*SMPTERuler" style:highest "editor_time_ruler"
+widget "*BBTRuler" style:highest "editor_time_ruler"
+widget "*FramesRuler" style:highest "editor_time_ruler"
+widget "*MinSecRuler" style:highest "editor_time_ruler"
+widget "*BaseFrame" style:highest "base_frame"
+widget "*AudioTrackStripBase" style:highest "audio_track_base"
+widget "*TimeAxisViewControlsBaseUnselected" style:highest "audio_track_base"
+widget "*AudioTrackControlsBaseUnselected" style:highest "audio_track_base"
+widget "*AudioTrackFader" style:highest "gain_fader"
+widget "*AudioBusStripBase" style:highest "audio_bus_base"
+widget "*BusControlsBaseUnselected" style:highest "audio_bus_base"
+widget "*AudioBusFader" style:highest "gain_fader"
+widget "*TrackSeparator" style:highest "track_separator"
+widget "*TrackEditIndicator0*" style:highest "edit_group_0"
+widget "*TrackEditIndicator1*" style:highest "edit_group_1"
+widget "*TrackEditIndicator2*" style:highest "edit_group_2"
+widget "*TrackEditIndicator3*" style:highest "edit_group_3"
+widget "*TrackEditIndicator4*" style:highest "edit_group_3"
+widget "*TrackEditIndicator5*" style:highest "edit_group_3"
+widget "*TrackEditIndicator6*" style:highest "edit_group_3"
+widget "*TrackEditIndicator7*" style:highest "edit_group_3"
+widget "*EditorTrackNameDisplay" style:highest "track_name_display"
+widget "*EditorTrackNameDisplay*" style:highest "track_name_display"
+widget "*EditorActiveTrackNameDisplay" style:highest "active_track_name_display"
+widget "*EditorActiveTrackNameDisplay*" style:highest "active_track_name_display"
+widget "*CrossfadeEditAuditionButton" style:highest "red_when_active"
+widget "*CrossfadeEditAuditionButton*" style:highest "red_when_active"
+widget "*CrossfadeEditCurveButton" style:highest "red_when_active"
+widget "*CrossfadeEditCurveButton*" style:highest "red_when_active"
+widget "*CrossfadeEditLabel" style:highest "medium_text"
+widget "*CrossfadeEditFrame" style:highest "base_frame"
+widget "*MouseModeButton" style:highest "default_buttons_menus"
+widget "*MouseModeButton*" style:highest "default_buttons_menus"
+widget "*EditorMainCanvas" style:highest "main_canvas_area"
+widget "*AudioTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*BusControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*AutomationTrackControlsBaseInactiveUnselected" style:highest "track_controls_inactive"
+widget "*AutomationTrackName" style:highest "automation_track_name"
+widget "*AudioTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*BusControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*AutomationTrackControlsBaseInactiveSelected" style:highest "track_controls_inactive"
+widget "*AudioTrackStripBaseInactive" style:highest "track_controls_inactive"
+widget "*AudioBusStripBaseInactive" style:highest "track_controls_inactive"
+widget "*AudioTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*BusControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*AutomationTrackControlsBase" style:highest "automation_track_controls_base"
+widget "*AutomationTrackControlsBaseSelected" style:highest "edit_controls_base_selected"
+widget "*EditorMenuBar*" style:highest "black_mackie_menu_bar"
+widget "*MainMenuBar*" style:highest "black_mackie_menu_bar"
+widget "*ZoomClickBox" style:highest "medium_bold_entry"
+widget "*PluginParameterLabel" style:highest "medium_text"
+widget "*PluginNameInfo" style:highest "plugin_name_text"
+widget "*PluginMakerInfo" style:highest "plugin_maker_text"
+widget "*PluginParameterInfo" style:highest "medium_text"
+widget "*MotionControllerValue" style:highest "medium_entry"
+widget "*ParameterValueDisplay" style:highest "medium_bold_entry"
+widget "*PluginUIClickBox" style:highest "medium_bold_entry"
+widget "*PluginUIClickBox*" style:highest "medium_bold_entry"
+widget "*PluginSlider" style:highest "plugin_slider"
+widget "*RedirectSelector" style:highest "redirect_list_display"
+widget "*RedirectSelector.*" style:highest "redirect_list_display"
+widget "*EditGroupDisplay" style:highest "treeview_display"
+widget "*TrackListDisplay" style:highest "treeview_display"
+widget "*RegionListDisplay" style:highest "treeview_display"
+widget "*NamedSelectionDisplay" style:highest "treeview_display"
+widget "*SnapshotDisplay" style:highest "treeview_display"
+widget "*MixerTrackCommentArea" style:highest "option_entry"
+widget "*MixerPanZone" style:highest "pan_zone"
+widget "*MixerTrackDisplayList" style:highest "treeview_display"
+widget "*MixerSnapshotDisplayList" style:highest "treeview_display"
+widget "*MixerAuxDisplayList" style:highest "treeview_display"
+widget "*MixerGroupList" style:highest "treeview_display"
+widget "*RegionEditorLabel" style:highest "medium_text"
+widget "*RegionEditorSmallLabel" style:highest "small_text"
+widget "*RegionEditorEntry" style:highest "medium_entry"
+widget "*RegionEditorClock" style:highest "default_clock_display"
+widget "*RegionEditorToggleButton" style:highest "paler_red_when_active"
+widget "*RegionEditorToggleButton*" style:highest "paler_red_when_active"
+widget "*MixerStripSpeedBase" style:highest "small_entry"
+widget "*MixerStripSpeedBase*" style:highest "small_entry"
+widget "*MixerStripSpeedBaseNotOne" style:highest "small_red_on_black_entry"
+widget "*MixerStripSpeedBaseNotOne*" style:highest "small_red_on_black_entry"
+widget "*MixerStripGainDisplay" style:highest "small_entry"
+widget "*MixerStripGainDisplay*" style:highest "small_entry"
+widget "*MixerStripGainUnitButton" style:highest "very_small_button"
+widget "*MixerStripGainUnitButton*" style:highest "very_small_button"
+widget "*MixerStripMeterPreButton" style:highest "very_small_button"
+widget "*MixerStripMeterPreButton*" style:highest "very_small_button"
+widget "*MixerStripPeakDisplay*" style:highest "red_active_small_entry"
+widget "*MixerStripPeakDisplayPeak*" style:highest "peak_display_peaked_entry"
+widget "*MixerStripSelectedFrame" style:highest "selected_strip_frame"
+widget "*MixerStripFrame" style:highest "base_frame"
+widget "*HWMonitorButton" style:highest "red_when_active"
+widget "*HWMonitorButton*" style:highest "red_when_active"
+widget "*BypassButton" style:highest "red_when_active"
+widget "*BypassButton*" style:highest "red_when_active"
+widget "*TransportSoloAlert" style:highest "flashing_alert"
+widget "*TransportSoloAlert.*" style:highest "flashing_alert"
+widget "*TransportAuditioningAlert" style:highest "flashing_alert"
+widget "*TransportAuditioningAlert.*" style:highest "flashing_alert"
+widget "*FadeCurve" style:highest "medium_bold_entry"
+widget "*FadeCurve*" style:highest "medium_bold_entry"
+widget "*IOSelectorButton" style:highest "default_buttons_menus"
+widget "*IOSelectorButton*" style:highest "default_buttons_menus"
+widget "*IOSelectorList" style:highest "medium_entry_noselection_fg"
+widget "*IOSelectorPortList" style:highest "io_selector_port_list"
+widget "*IOSelectorPortList.*" style:highest "io_selector_port_list"
+widget "*IOSelectorPortListSelected" style:highest "selected_io_selector_port_list"
+widget "*IOSelectorPortListSelected.*" style:highest "selected_io_selector_port_list"
+widget "*IOSelectorNotebook" style:highest "io_selector_notebook"
+widget "*IOSelectorNotebookTab" style:highest "io_selector_notebook"
+widget "*IOSelectorFrame" style:highest "base_frame"
+widget "*ConnectionEditorButton" style:highest "default_buttons_menus"
+widget "*ConnectionEditorButton*" style:highest "default_buttons_menus"
+widget "*ConnectionEditorList" style:highest "medium_entry_noselection_fg"
+widget "*ConnectionEditorConnectionList" style:highest "medium_entry"
+widget "*ConnectionEditorPortList" style:highest "io_selector_port_list"
+widget "*ConnectionEditorPortListSelected" style:highest "selected_io_selector_port_list"
+widget "*ConnectionEditorNotebook" style:highest "io_selector_notebook"
+widget "*ConnectionEditorNotebookTab" style:highest "io_selector_notebook"
+widget "*ConnectionEditorFrame" style:highest "base_frame"
+widget "*RouteParamsListDisplay" style:highest "inspector_track_list_display"
+widget "*RouteParamsPreListDisplay" style:highest "inspector_redirect_list_display"
+widget "*RouteParamsPostListDisplay" style:highest "inspector_redirect_list_display"
+widget "*TearOffArrow" style:highest "tearoff_arrow"
+widget "*RouteParamsTitleButton" style:highest "medium_text"
+widget "*RouteParamsTitleLabel" style:highest "medium_text"
+widget "*PluginAutomateRecordButton" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomateRecordButton*" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomatePlayButton" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomatePlayButton*" style:highest "small_red_active_and_selected_button"
+widget "*PluginAutomateButton" style:highest "small_button"
+widget "*PluginAutomateButton*" style:highest "small_button"
+widget "*PluginSaveButton" style:highest "small_button"
+widget "*PluginSaveButton*" style:highest "small_button"
+widget "*PluginLoadButton" style:highest "small_button"
+widget "*PluginLoadButton*" style:highest "small_button"
+widget "*FaderMetricsStrip" style:highest "meter_metrics_strip"
+widget "*MeterMetricsStrip" style:highest "meter_metrics_strip"
+widget "*MetricDialogFrame" style:highest "base_frame"
+widget "*MetricEntry" style:highest "medium_bold_entry"
+widget "*MetricButton" style:highest "default_buttons_menus"
+widget "*MetricButton.*" style:highest "default_buttons_menus"
+widget "*MetricLabel" style:highest "medium_text"
+widget "*TimeStretchButton" style:highest "default_buttons_menus"
+widget "*TimeStretchButton.*" style:highest "default_buttons_menus"
+widget "*TimeStretchProgress" style:highest "default_buttons_menus"
+widget "*ChoiceWindow" style:highest "default_buttons_menus"
+widget "*ChoicePrompt" style:highest "default_buttons_menus"
+widget "*ChoiceButton" style:highest "default_buttons_menus"
+widget "*ChoiceButton*" style:highest "default_buttons_menus"
+widget "*SelectionModeButton" style:highest "default_buttons_menus"
+widget "*SelectionModeButton*" style:highest "default_buttons_menus"
+widget "*TrackLabel" style:highest "medium_text"
+widget "*TrackPlugName" style:highest "medium_text"
+widget "*TrackParameterName" style:highest "small_text"
+widget "*AddRouteDialog*" style:highest "medium_text"
+widget "*AddRouteDialog.GtkLabel" style:highest "medium_text"
+widget "*AddRouteDialogChannelChoice" style:highest "medium_bold_entry"
+widget "*AddRouteDialogSpinner" style:highest "medium_bold_entry"
+widget "*AddRouteDialogSpinner*" style:highest "medium_bold_entry"
+widget "*AddRouteDialogRadioButton" style:highest "red_when_active"
+widget "*AddRouteDialogButton" style:highest "default_buttons_menus"
+widget "*AddRouteDialogNameTemplateEntry" style:highest "medium_bold_entry"
+widget "*NewSessionIOLabel" style:highest "larger_bold_text"
+widget "*NewSessionSR1Label" style:highest "red_medium_text"
+widget "*NewSessionSR2Label" style:highest "medium_text"
+widget "*NewSessionChannelChoice" style:highest "medium_bold_entry"
+widget "*NewSessionMainButton" style:highest "larger_bold_text"
+widget "*NewSessionMainButton*" style:highest "larger_bold_text"
+widget "*NewSessionMainLabel" style:highest "larger_bold_text"
+widget "*LocationEditRowClock" style:highest "location_rows_clock"
+widget "*LocationEditNameLabel" style:highest "medium_text"
+widget "*LocationEditSetButton" style:highest "location_row_button"
+widget "*LocationEditSetButton*" style:highest "location_row_button"
+widget "*LocationEditGoButton" style:highest "location_row_button"
+widget "*LocationEditGoButton*" style:highest "location_row_button"
+widget "*LocationEditCdButton" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditCdButton*" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditHideButton" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditHideButton*" style:highest "small_red_active_and_selected_button"
+widget "*LocationEditNumberLabel" style:highest "small_text"
+widget "*LocationLocEditorFrame" style:highest "base_frame"
+widget "*LocationRangeEditorFrame" style:highest "base_frame"
+widget "*LocationEditNameEntry" style:highest "option_entry"
+widget "*LocationAddLocationButton" style:highest "default_buttons_menus"
+widget "*LocationAddLocationButton*" style:highest "default_buttons_menus"
+widget "*LocationAddRangeButton" style:highest "default_buttons_menus"
+widget "*LocationAddRangeButton*" style:highest "default_buttons_menus"
+widget "*LocationEditRemoveButton" style:highest "location_row_button"
+widget "*LocationEditRemoveButton*" style:highest "location_row_button"
+widget "*PanSlider" style:highest "pan_slider"
+widget "*PanningLinkButton" style:highest "mixer_red_active_button"
+widget "*PanningLinkButton.*" style:highest "mixer_red_active_button"
+widget "*PanningLinkDirectionButton" style:highest "very_small_button"
+widget "*PanningLinkDirectionButton.*" style:highest "very_small_button"
+widget "*ChannelCountSelector" style:highest "medium_bold_entry"
+widget "*ChannelCountSelector.GtkArrow" style:highest "default_buttons_menus"
+widget "*RegionListWholeFile" style:highest "treeview_parent_node"
+widget "*EditorHScrollbar" style:highest "editor_hscrollbar"
+