From 60dd4f411badafff97750deb4a6854908c01ae90 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 5 Aug 2020 08:03:12 +0200 Subject: [PATCH] Readable text in dark mode. part of CURA-7627 --- plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml index 74305fb4bd..2fa4224388 100644 --- a/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml +++ b/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml @@ -58,6 +58,7 @@ Item } text: details && details.name ? details.name : "" font: UM.Theme.getFont("large_bold") + color: UM.Theme.getColor("text_medium") wrapMode: Text.WordWrap width: parent.width height: UM.Theme.getSize("toolbox_property_label").height @@ -68,6 +69,7 @@ Item id: description text: details && details.description ? details.description : "" font: UM.Theme.getFont("default") + color: UM.Theme.getColor("text_medium") anchors { top: title.bottom