[vlc-devel] [PATCH 02/17] qml: add separator color to VLCColors

Prince Gupta guptaprince8832 at gmail.com
Fri Jun 19 16:06:15 CEST 2020


---
 modules/gui/qt/style/VLCColors.qml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/modules/gui/qt/style/VLCColors.qml b/modules/gui/qt/style/VLCColors.qml
index 61ef92b34e..a92a090407 100644
--- a/modules/gui/qt/style/VLCColors.qml
+++ b/modules/gui/qt/style/VLCColors.qml
@@ -79,6 +79,8 @@ Item {
     property color playerBg: "black"
     property color playerBorder: "#222222"
 
+    property color separator: blendColors(bg, text, .95)
+
     //vlc orange
     property color accent: "#FFFF950D";
 
@@ -121,6 +123,7 @@ Item {
 
                 accent: "#ff950d";
                 alert: "#ff0000";
+                separator: "#ededed"
             }
         },
         State {
@@ -144,6 +147,7 @@ Item {
                 bannerHover: "#3daee9"
                 accent: "#ff950d"
                 alert: "#ff0000"
+                separator: "#2d2d2d"
             }
         },
         State {
@@ -171,6 +175,8 @@ Item {
                 textActiveSource: accent
                 banner: systemPalette.window
                 bannerHover: systemPalette.highlight
+
+                separator: blendColors(bg, text, .95)
             }
         }
     ]
-- 
2.25.1



More information about the vlc-devel mailing list