Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -r91c381afa3a5a01579d47a603600f1a56c8ab5b6 -rf7fdf92f3ab8ffea88d491b33f58b16f9617f237 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 91c381afa3a5a01579d47a603600f1a56c8ab5b6) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision f7fdf92f3ab8ffea88d491b33f58b16f9617f237) @@ -40,11 +40,6 @@ color : Colors.panelBackgroundColor clip : true - border { - width: 1 - color: Colors.panelBorderColor - } - MouseArea { anchors.fill: parent onClicked : { @@ -60,13 +55,13 @@ Rectangle { id: _header width : _column.width height : _title.implicitHeight + 10 - color : "#3A5A7B" + color : Colors.panelBackgroundColor radius : 5 visible : _title.text.length > 0 border { width: 1 - color: "#6B7C8F" + color: Colors.panelBorderColor } Text { id: _title @@ -75,6 +70,7 @@ color : Colors.offWhite font.pixelSize : fontPixelSizeTitle font.family : Fonts.fontFamilyFixed + font.weight : Font.Medium anchors.centerIn : parent } } @@ -117,7 +113,7 @@ font { pixelSize : fontPixelSizeLabel family : Fonts.fontFamilyFixed - weight : Font.Light + weight : Font.ExtraLight } verticalAlignment : Text.AlignVCenter } Index: sources/gui/qml/globals/Fonts.qml =================================================================== diff -u -r81aec0b1316a43c46f8c27c773d8f95e695ec273 -rf7fdf92f3ab8ffea88d491b33f58b16f9617f237 --- sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision 81aec0b1316a43c46f8c27c773d8f95e695ec273) +++ sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision f7fdf92f3ab8ffea88d491b33f58b16f9617f237) @@ -102,7 +102,7 @@ readonly property int fontPixelInstructionTitle : 45 readonly property int fontPixelInstructionStep : 30 - readonly property int fontPixelDebugTitle : 25 + readonly property int fontPixelDebugTitle : 22 readonly property int fontPixelDebugText : 25 readonly property int fontPixelDebugLabel : 18 readonly property string fontFamilyFixed : "Barlow"