From 3d7e76b3ad16ebab812bbb3d8b8d8962c9c6edf6 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Tue, 8 Apr 2025 16:57:37 +0200 Subject: [PATCH] QmlDesigner: Fix Design Tokens light color theme Task-number: QDS-15169 Change-Id: Iad6ac5cda434ccf14ef97700a07864cc8815acd3 Reviewed-by: Thomas Hartmann (cherry picked from commit 9b6198b11c5b9372f4021010ff18865d68ceb4a7) Reviewed-by: Tim Jenssen --- share/qtcreator/qmldesigner/designsystem/Main.qml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/share/qtcreator/qmldesigner/designsystem/Main.qml b/share/qtcreator/qmldesigner/designsystem/Main.qml index 33f15dff998..cff2b35ab05 100644 --- a/share/qtcreator/qmldesigner/designsystem/Main.qml +++ b/share/qtcreator/qmldesigner/designsystem/Main.qml @@ -23,12 +23,11 @@ Rectangle { readonly property int cellWidth: 200 readonly property int cellHeight: 40 - readonly property color textColor: "#ffffff" - readonly property color iconColor: "#959595" - readonly property color backgroundColor: "#2c2c2c" - readonly property color borderColor: "#444444" + readonly property color backgroundColor: StudioTheme.Values.themePanelBackground + // TODO This is not a proper color value, but will be fixed with new design + readonly property color borderColor: StudioTheme.Values.themeControlBackground_topToolbarHover - readonly property int borderWidth: 1 + readonly property int borderWidth: StudioTheme.Values.border readonly property int textSize: 18 readonly property int iconSize: 16