diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-29 09:08:46 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-29 09:08:46 +0800 |
commit | cfc73864697f0145b262d8a82ac49658af45cac3 (patch) | |
tree | e9055fabee795c004a31972baf9b07c4164cabe7 /Home | |
parent | faf97cc5a774090f73f85d8a10e6ca3f1491e2b2 (diff) |
Card supports dark mode
Diffstat (limited to 'Home')
-rw-r--r-- | Home/Default/Card.ui.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Home/Default/Card.ui.qml b/Home/Default/Card.ui.qml index 9fc3ff5..4f2e309 100644 --- a/Home/Default/Card.ui.qml +++ b/Home/Default/Card.ui.qml @@ -31,6 +31,7 @@ Item { Rectangle { id: rectangle radius: 8 + color: Eduport.bsCardBg anchors { fill: parent topMargin: 25.6 @@ -59,6 +60,7 @@ Item { Rectangle { height: 16 + color: Eduport.bsCardBg anchors { left: parent.left right: parent.right @@ -126,7 +128,7 @@ Item { Lbl.H5 { id: title text: titleText - color: Qt.rgba(.141, .161, .176, 1.0) + color: Eduport.bsCardTitleColor Layout.fillWidth: true Layout.bottomMargin: 8 @@ -138,7 +140,6 @@ Item { Lbl.Body { text: truncatedText - color: Qt.rgba(.455, .459, .475, 1.0) elide: Text.ElideRight maximumLineCount: 2 Layout.fillWidth: true |