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 49af336 commit c38209eCopy full SHA for c38209e
src/qml/controls/Header.qml
@@ -16,6 +16,7 @@ ColumnLayout {
16
property string description: ""
17
property int descriptionMargin: 10
18
property int descriptionSize: 18
19
+ property string descriptionColor: Theme.color.neutral8
20
property string subtext: ""
21
property int subtextMargin
22
property int subtextSize: 15
@@ -42,7 +43,7 @@ ColumnLayout {
42
43
font.family: "Inter"
44
font.styleName: "Regular"
45
font.pixelSize: root.descriptionSize
- color: Theme.color.neutral8
46
+ color: root.descriptionColor
47
text: root.description
48
horizontalAlignment: root.center ? Text.AlignHCenter : Text.AlignLeft
49
wrapMode: wrap ? Text.WordWrap : Text.NoWrap
0 commit comments