diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml index 3a6800e999..21000b8bff 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml @@ -24,7 +24,7 @@ Item direction: "up" // Use dark grey for info blurbs and white for context menus - color: "#191919" // TODO: Theme! + color: UM.Theme.getColor("monitor_tooltip") contentItem: Item { @@ -38,7 +38,7 @@ Item text: "" wrapMode: Text.WordWrap width: 240 * screenScaleFactor // TODO: Theme! - color: "white" // TODO: Theme! + color: UM.Theme.getColor("monitor_tooltip_text") font: UM.Theme.getFont("default") } } diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 607711c2f3..b12385c962 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -422,7 +422,8 @@ "monitor_progress_bar_deactive": [192, 193, 194, 255], "monitor_progress_bar_empty": [245, 245, 245, 255], - "monitor_tooltips": [25, 25, 25, 255], + "monitor_tooltip": [25, 25, 25, 255], + "monitor_tooltip_text": [255, 255, 255, 255], "monitor_context_menu": [255, 255, 255, 255], "monitor_context_menu_hover": [245, 245, 245, 255],