summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--basicsuite/mediaplayer/PlaybackControl.qml5
-rw-r--r--basicsuite/mediaplayer/UrlBar.qml2
-rw-r--r--basicsuite/mediaplayer/VolumeControl.qml4
3 files changed, 6 insertions, 5 deletions
diff --git a/basicsuite/mediaplayer/PlaybackControl.qml b/basicsuite/mediaplayer/PlaybackControl.qml
index 5fff05f..7c90fa6 100644
--- a/basicsuite/mediaplayer/PlaybackControl.qml
+++ b/basicsuite/mediaplayer/PlaybackControl.qml
@@ -50,6 +50,7 @@
import QtQuick 2.0
import QtDeviceUtilities.QtButtonImageProvider 1.0
+import "settings.js" as Settings
Row {
anchors.leftMargin: parent.width * 0.02
@@ -72,7 +73,7 @@ Row {
height: width
anchors.bottom: parent.bottom
anchors.bottomMargin: root.spacing
- fillColor: viewSettings.buttonGreenColor
+ fillColor: Settings.primaryGreen
Image{
anchors.centerIn: parent
width: parent.width * 0.5
@@ -91,7 +92,7 @@ Row {
height: width
anchors.bottom: parent.bottom
anchors.bottomMargin: root.spacing
- fillColor: viewSettings.buttonGreenColor
+ fillColor: Settings.primaryGreen
Image{
anchors.centerIn: parent
width: parent.width * 0.5
diff --git a/basicsuite/mediaplayer/UrlBar.qml b/basicsuite/mediaplayer/UrlBar.qml
index 80a9259..cb822ff 100644
--- a/basicsuite/mediaplayer/UrlBar.qml
+++ b/basicsuite/mediaplayer/UrlBar.qml
@@ -95,7 +95,7 @@ Rectangle {
background: Rectangle {
color: Settings.backgroundColor
opacity: 0.8
- border.color: viewSettings.borderColor
+ border.color: Settings.primaryGrey
border.width: 2
}
onAccepted: root.urlAccepted(urlInput.text);
diff --git a/basicsuite/mediaplayer/VolumeControl.qml b/basicsuite/mediaplayer/VolumeControl.qml
index 3a83491..9536d12 100644
--- a/basicsuite/mediaplayer/VolumeControl.qml
+++ b/basicsuite/mediaplayer/VolumeControl.qml
@@ -69,7 +69,7 @@ Item {
anchors.bottom: parent.bottom
anchors.bottomMargin: controlBar.width * 0.02
anchors.horizontalCenter: parent.horizontalCenter
- fillColor: viewSettings.buttonGreenColor
+ fillColor: Settings.primaryGreen
Image{
anchors.centerIn: parent
@@ -104,7 +104,7 @@ Item {
width: controlBar.width * 0.06
height: width
anchors.bottom: parent.bottom
- fillColor: viewSettings.buttonGrayColor
+ fillColor: Settings.primaryGrey
borderColor: "transparent"
Image{
anchors.centerIn: parent