diff --git a/Components/Clock.qml b/Components/Clock.qml index f1b9fab..8df4adc 100644 --- a/Components/Clock.qml +++ b/Components/Clock.qml @@ -24,7 +24,7 @@ Column { anchors.horizontalCenter: parent.horizontalCenter font.pointSize: root.font.pointSize * 9 font.bold: true - color: config.DateTextColor + color: config.TimeTextColor renderType: Text.QtRendering function updateTime() { text = new Date().toLocaleTimeString(Qt.locale(config.Locale), config.HourFormat == "long" ? Locale.LongFormat : config.HourFormat !== "" ? config.HourFormat : Locale.ShortFormat) @@ -34,7 +34,7 @@ Column { Label { id: dateLabel anchors.horizontalCenter: parent.horizontalCenter - color: config.TimeTextColor + color: config.DateTextColor font.pointSize: root.font.pointSize * 2 font.bold: true renderType: Text.QtRendering diff --git a/Components/Input.qml b/Components/Input.qml index 3c17dc0..91c32b2 100644 --- a/Components/Input.qml +++ b/Components/Input.qml @@ -98,6 +98,7 @@ Column { text: model.name font.pointSize: root.font.pointSize * 0.8 font.capitalization: Font.AllLowercase + font.family: root.font.family color: config.DropdownTextColor verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter @@ -394,6 +395,7 @@ Column { hoverEnabled: true contentItem: Text { + font.bold: true text: parent.text color: config.LoginButtonTextColor font.pointSize: root.font.pointSize diff --git a/Main.qml b/Main.qml index 12c4739..88e9d34 100644 --- a/Main.qml +++ b/Main.qml @@ -114,6 +114,7 @@ Pane { text: config.TranslateVirtualKeyboardButtonOff || "Virtual Keyboard (off)" color: parent.visualFocus ? config.HoverVirtualKeyboardButtonTextColor : config.VirtualKeyboardButtonTextColor font.pointSize: root.font.pointSize * 0.8 + font.family: root.font.family } background: Rectangle { id: vkbbg