summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Home/Default/Card.ui.qml5
-rw-r--r--Label/FwLight.ui.qml2
-rw-r--r--imports/Eduport/Eduport.qml3
3 files changed, 7 insertions, 3 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
diff --git a/Label/FwLight.ui.qml b/Label/FwLight.ui.qml
index d88e30d..f012fe5 100644
--- a/Label/FwLight.ui.qml
+++ b/Label/FwLight.ui.qml
@@ -2,7 +2,7 @@ import QtQuick 2.15
import QtQuick.Controls 2.15
import Eduport 1.4
-Label {
+H6 {
font {
family: Eduport.fwLightFont.family
weight: Eduport.fwLightFont.weight
diff --git a/imports/Eduport/Eduport.qml b/imports/Eduport/Eduport.qml
index 240319a..8e01bdd 100644
--- a/imports/Eduport/Eduport.qml
+++ b/imports/Eduport/Eduport.qml
@@ -86,6 +86,9 @@ QtObject {
readonly property color bsBtnSuccessDisabledBorderColor:
bsBtnSuccessDisabledBg
+ property color bsCardBg: mode ? "#1b1e21" : "#ffffff"
+ property color bsCardTitleColor: mode ? "#f7f5f5" : "#24292d"
+
property color bsDropdownColor: "#747579"
property color bsDropdownLinkColor: mode ? "#c5c6cc" : "#747579"
property color bsDropdownLinkHoverColor: "#066ac9"