summaryrefslogtreecommitdiffstats
path: root/resources/qml/ToggleButton.qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2023-03-01 10:49:17 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2023-03-01 10:49:17 -0500
commit3245b119be5ff577e8ffc387f5e1acfe3317336b (patch)
tree2e1f5e097c27d14f1291154601e77730f1c8ff1c /resources/qml/ToggleButton.qml
parent0df306e68bf254722e33a29550ec12b9bb0e7a29 (diff)
Make switches respect accent color
Diffstat (limited to 'resources/qml/ToggleButton.qml')
-rw-r--r--resources/qml/ToggleButton.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/ToggleButton.qml b/resources/qml/ToggleButton.qml
index b7adf21f..20e82ad6 100644
--- a/resources/qml/ToggleButton.qml
+++ b/resources/qml/ToggleButton.qml
@@ -25,7 +25,7 @@ Switch {
width: parent.width - height
x: radius
y: parent.height / 2 - height / 2
- color: toggleButton.checked ? "skyblue" : "grey"
+ color: toggleButton.checked ? Nheko.colors.highlight : "grey"
border.color: "#cccccc"
}