diff --git a/resources/qml/JobSpecs.qml b/resources/qml/JobSpecs.qml index 1670e9f9d1..7f8dc119ea 100644 --- a/resources/qml/JobSpecs.qml +++ b/resources/qml/JobSpecs.qml @@ -161,7 +161,7 @@ Rectangle { anchors.right: parent.right height: UM.Theme.getSize("jobspecs_line").height verticalAlignment: Text.AlignVCenter - font: UM.Theme.getFont("small") + font: UM.Theme.getFont("small_bold") color: UM.Theme.getColor("text_subtext") text: Printer.getSceneBoundingBoxString } @@ -193,7 +193,7 @@ Rectangle { anchors.right: lengthIcon.left anchors.rightMargin: UM.Theme.getSize("default_margin").width anchors.verticalCenter: parent.verticalCenter - font: UM.Theme.getFont("small") + font: UM.Theme.getFont("small_bold") color: UM.Theme.getColor("text_subtext") text: (!base.printDuration || !base.printDuration.valid) ? catalog.i18nc("@label", "00h 00min") : base.printDuration.getDisplayString(UM.DurationFormat.Short) } @@ -213,7 +213,7 @@ Rectangle { id: lengthSpec anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter - font: UM.Theme.getFont("small") + font: UM.Theme.getFont("small_bold") color: UM.Theme.getColor("text_subtext") text: base.printMaterialAmount <= 0 ? catalog.i18nc("@label", "0.0 m") : catalog.i18nc("@label", "%1 m").arg(base.printMaterialAmount) } diff --git a/resources/themes/cura/theme.json b/resources/themes/cura/theme.json index 1332aedca0..ca8390179c 100644 --- a/resources/themes/cura/theme.json +++ b/resources/themes/cura/theme.json @@ -18,6 +18,12 @@ "size": 1.0, "family": "Open Sans" }, + "small_bold": + { + "size": 1.0, + "family": "Open Sans", + "bold": true + }, "very_small": { "size": 0.75, "family": "Open Sans" @@ -67,7 +73,7 @@ "text_hover": [70, 84, 113, 255], "text_pressed": [12, 169, 227, 255], "text_white": [255, 255, 255, 255], - "text_subtext": [127, 127, 127, 255], + "text_subtext": [100, 100, 100, 255], "error": [255, 140, 0, 255], "sidebar_header_bar": [24, 41, 77, 255],