summaryrefslogtreecommitdiffstats
path: root/src/settingsui/timedate/ManualTime.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/settingsui/timedate/ManualTime.qml')
-rw-r--r--src/settingsui/timedate/ManualTime.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/settingsui/timedate/ManualTime.qml b/src/settingsui/timedate/ManualTime.qml
index df4a8b8..bdb82cd 100644
--- a/src/settingsui/timedate/ManualTime.qml
+++ b/src/settingsui/timedate/ManualTime.qml
@@ -73,7 +73,7 @@ Item {
anchors.left: dayDelegate.left
anchors.leftMargin: pluginMain.margin
text: modelData + 1
- color: dayBox.currentIndex == index ? "#41cd52" : "white"
+ color: dayBox.currentIndex == index ? viewSettings.buttonGreenColor : "white"
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
font.pixelSize: pluginMain.valueFontSize
@@ -105,7 +105,7 @@ Item {
contentItem: Text {
anchors.left: monthDelegate.left
anchors.leftMargin: pluginMain.margin
- color: monthBox.currentIndex == index ? "#41cd52" : "white"
+ color: monthBox.currentIndex == index ? viewSettings.buttonGreenColor : "white"
elide: Text.ElideRight
text: modelData
verticalAlignment: Text.AlignVCenter
@@ -132,7 +132,7 @@ Item {
anchors.left: yearDelegate.left
anchors.leftMargin: pluginMain.margin
text: index + firstYear
- color: yearBox.currentIndex == index ? "#41cd52" : "white"
+ color: yearBox.currentIndex == index ? viewSettings.buttonGreenColor : "white"
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
font.pixelSize: pluginMain.valueFontSize
@@ -172,7 +172,7 @@ Item {
anchors.left: hourDelegate.left
anchors.leftMargin: pluginMain.margin
text: zeroPadTime(parseInt(modelData))
- color: hourBox.currentIndex == index ? "#41cd52" : "white"
+ color: hourBox.currentIndex == index ? viewSettings.buttonGreenColor : "white"
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
font.pixelSize: pluginMain.valueFontSize
@@ -198,7 +198,7 @@ Item {
anchors.left: minuteDelegate.left
anchors.leftMargin: pluginMain.margin
text: zeroPadTime(parseInt(modelData))
- color: minuteBox.currentIndex == index ? "#41cd52" : "white"
+ color: minuteBox.currentIndex == index ? viewSettings.buttonGreenColor : "white"
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
font.pixelSize: pluginMain.valueFontSize
@@ -237,7 +237,7 @@ Item {
QtButton {
id: dateCancelButton
height: pluginMain.buttonHeight
- fillColor: "#9d9faa"
+ fillColor: viewSettings.buttonGrayColor
borderColor: "transparent"
text: qsTr("CANCEL")
onClicked: {