Skip to content

Commit

Permalink
update color
Browse files Browse the repository at this point in the history
  • Loading branch information
jared2020 committed May 17, 2023
1 parent d2acb5c commit 1118734
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Binary file modified src/TaoQuick/Qml/Basic/cusColorOverlay.frag.qsb
Binary file not shown.
14 changes: 7 additions & 7 deletions src/TaoQuick/Qml/CusConfig.qml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ QtObject {
imagePathPrefix = taoQuickImportPath + "TaoQuick/Images/"
shaderPath = taoQuickImportPath + "TaoQuick/Qml/Basic/"
}
currentTheme = 0
currentTheme = 1
}
property color themeColor
property color backgroundColor
Expand All @@ -49,15 +49,15 @@ QtObject {
}
}

property color imageColor_hovered: Qt.darker(themeColor, 1.2)
property color imageColor_pressed: Qt.darker(themeColor, 1.4)
property color imageColor_hovered: Qt.darker(imageColor, 1.2)
property color imageColor_pressed: Qt.darker(imageColor, 1.4)

property color controlBorderColor_hovered: Qt.darker(themeColor, 1.2)
property color controlBorderColor_pressed: Qt.darker(themeColor, 1.4)
property color controlBorderColor_hovered: Qt.darker(controlBorderColor, 1.2)
property color controlBorderColor_pressed: Qt.darker(controlBorderColor, 1.4)

property color controlColor
property color controlColor_hovered: Qt.darker(themeColor, 1.2)
property color controlColor_pressed: Qt.darker(themeColor, 1.4)
property color controlColor_hovered: Qt.darker(controlColor, 1.2)
property color controlColor_pressed: Qt.darker(controlColor, 1.4)
property color controlColor_disabled: Qt.lighter(controlColor, 2.0)
property color controlBorderColor_disabled: controlColor_disabled

Expand Down

0 comments on commit 1118734

Please sign in to comment.