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