Index: sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml =================================================================== diff -u -rbea36be2766046e63c4e82539a630b5cee7ce1c6 -rb8a9627cf291b564b0fc1570f9c0a97fa6873035 --- sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision bea36be2766046e63c4e82539a630b5cee7ce1c6) +++ sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision b8a9627cf291b564b0fc1570f9c0a97fa6873035) @@ -9,7 +9,6 @@ readonly property int rightColumnWidth : 325 readonly property int leftColumnWidth : 170 readonly property int columnSpacing : Variables.defaultMargin * 3 - readonly property color infoColor : "#2E5E92" readonly property var _dataModel: [ { name: qsTr("OS Version" ) , value: vDevice.osVersion }, @@ -50,7 +49,7 @@ anchors.verticalCenter: parent.verticalCenter Text { id: _name - color : _root.infoColor + color : Colors.dialogText text : modelData.name width : leftColumnWidth font.pixelSize : Fonts.fontPixelDialogText @@ -95,7 +94,7 @@ Text { id: _qrCodeInstructions anchors.bottom : _qrCode.bottom text : qsTr("Customer Service Number: %1\nScan for electronic instructions for use (eIFU)").arg("(123) 456-7890") - color : _root.infoColor + color : Colors.dialogText font.pixelSize : Fonts.fontPixelDialogText } }