From 6b8fa8c5eeb7ce4825a7871e670437756723391d Mon Sep 17 00:00:00 2001 From: hat3ph <88069788+hat3ph@users.noreply.github.com> Date: Wed, 13 Nov 2024 06:33:14 +0800 Subject: [PATCH] enable bold font and matching font and icon color for action bar --- Main.qml | 6 ++++++ theme.conf | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Main.qml b/Main.qml index 7354393..b630f48 100644 --- a/Main.qml +++ b/Main.qml @@ -223,6 +223,7 @@ Rectangle { text : Qt.formatTime(clock.dateTime, config.timeFormat || "hh:mm") font.pointSize: config.clockFontSize font.family: textFont.name + font.bold: true } Text { @@ -232,6 +233,7 @@ Rectangle { text : Qt.formatDate(clock.dateTime, config.dateFormat || "dddd, dd MMMM yyyy") font.family: textFont.name font.pointSize: config.dateFontSize + font.bold: true } } @@ -263,6 +265,7 @@ Rectangle { font.family: textFont.name font.bold: true font.pixelSize: config.labelFontSize + font.bold: true color: config.labelFontColor text: "Username" anchors.verticalCenter: parent.verticalCenter @@ -403,6 +406,7 @@ Rectangle { height: parent.height font.family: textFont.name font.pixelSize: config.errorMsgFontSize + font.bold: true //color: "white" anchors.top: password_input_box.bottom anchors.left: password_input_box.left @@ -442,6 +446,7 @@ Rectangle { hoverColor: "#5692c4" font.family: textFont.name font.pixelSize: config.actionBarFontSize + font.bold: true model: sessionModel index: sessionModel.lastIndex @@ -487,6 +492,7 @@ Rectangle { text: modelItem ? modelItem.modelData.shortName : "zz" font.family: textFont.name font.pixelSize: config.actionBarFontSize + font.bold: true color: config.actionBarFontColor } } diff --git a/theme.conf b/theme.conf index 9d3b251..4e907e9 100644 --- a/theme.conf +++ b/theme.conf @@ -23,4 +23,4 @@ autofocusInput=true errorMsgFontColor="#dc322f" clockFontColor="white" labelFontColor="white" -actionBarFontColor="#505050" \ No newline at end of file +actionBarFontColor="#e0342c" \ No newline at end of file