File KeyItem-qml.patch of Package qvkbd
--- a/layouts/keys/KeyItem.qml 2022-10-01 08:02:14.938992956 +0300
+++ b/layouts/keys/KeyItem.qml 2022-10-01 08:02:26.903115359 +0300
@@ -32,13 +32,15 @@
width: 50
height: 50
- border.width: 1
- border.color: "darkgray"
- color: checked ? "red" : "white"
+ border.width: 2
+ border.color: checked ? "#5a892e" : "#5d5b59"
+ radius: 5
+ color: checked ? "#5a892e" : "#383533"
Text {
anchors.fill: parent
text: label
+ color: checked ? "#c5d6b6" : "#ffffff"
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}