File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ ColumnLayout {
13
13
property int headerMargin
14
14
property int headerSize: 28
15
15
property bool headerBold: false
16
+ property color headerColor: Theme .color .neutral9
16
17
property string description: " "
17
18
property int descriptionMargin: 10
18
19
property int descriptionSize: 18
@@ -30,10 +31,14 @@ ColumnLayout {
30
31
font .family : " Inter"
31
32
font .styleName : root .headerBold ? " Semi Bold" : " Regular"
32
33
font .pixelSize : root .headerSize
33
- color: Theme . color . neutral9
34
+ color: root . headerColor
34
35
text: root .header
35
36
horizontalAlignment: center ? Text .AlignHCenter : Text .AlignLeft
36
37
wrapMode: wrap ? Text .WordWrap : Text .NoWrap
38
+
39
+ Behavior on color {
40
+ ColorAnimation { duration: 150 }
41
+ }
37
42
}
38
43
Loader {
39
44
Layout .fillWidth : true
You can’t perform that action at this time.
0 commit comments