From 494714bf44705f01f56e1ed121fd80611f93bbe3 Mon Sep 17 00:00:00 2001 From: Hyunjin Song Date: Mon, 3 Jul 2017 20:37:46 +0900 Subject: [PATCH] Update classic/style.css with TabWidget, TrackView, PianoView and Fader colors (#3665) * Add TabWidget color settings to classic/style.css * update the classic theme * Revert unnecessary formattings * Fix style.css --- data/themes/classic/style.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/data/themes/classic/style.css b/data/themes/classic/style.css index 03e24ebcf..21a3b1551 100644 --- a/data/themes/classic/style.css +++ b/data/themes/classic/style.css @@ -139,6 +139,19 @@ PianoRoll { qproperty-textShadow: rgb( 240, 240, 240 ); } +TabWidget { + background-color: #5b6571; + qproperty-tabText: rgba(255, 255, 255, 180); + qproperty-tabTitleText: #fff; + qproperty-tabSelected: #61666b; + qproperty-tabBackground: #3c434b; + qproperty-tabBorder: #3c434b; +} + +GroupBox { + background-color: #5b6571; +} + /* main toolbar oscilloscope - can have transparent bg now */ VisualizationWidget { @@ -281,6 +294,11 @@ TrackContainerView QFrame{ background-color: #49515b; } +/* background for track controls */ +TrackView > QWidget { + background-color: #5b6571; +} + /* autoscroll, loop, stop behaviour toggle buttons */ /* track background colors */ @@ -523,6 +541,12 @@ PluginDescWidget:hover { background-color: #e0e0e0; } +/* piano widget */ + +PianoView { + background-color: #14171a; +} + /* font sizes for text buttons */ FxMixerView QPushButton, EffectRackView QPushButton, ControllerRackView QPushButton { @@ -543,6 +567,7 @@ FxLine { /* persistent peak markers for fx peak meters */ Fader { qproperty-peakGreen: rgb( 74, 253, 133); + qproperty-peakYellow: rgb(224, 222, 18); qproperty-peakRed: rgb( 255, 100, 100); }