We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc3fdc commit 195d8c5Copy full SHA for 195d8c5
src/qml/controls/Header.qml
@@ -22,6 +22,7 @@ ColumnLayout {
22
property string subtext: ""
23
property int subtextMargin
24
property int subtextSize: 15
25
+ property color subtextColor: Theme.color.neutral9
26
property bool wrap: true
27
28
spacing: 0
@@ -64,7 +65,7 @@ ColumnLayout {
64
65
font.family: "Inter"
66
font.styleName: "Regular"
67
font.pixelSize: root.subtextSize
- color: Theme.color.neutral9
68
+ color: root.subtextColor
69
text: root.subtext
70
horizontalAlignment: root.center ? Text.AlignHCenter : Text.AlignLeft
71
wrapMode: wrap ? Text.WordWrap : Text.NoWrap
0 commit comments