Skip to content

Commit

Permalink
Color Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mps01k committed Apr 5, 2018
1 parent d87e35d commit 8f6aa86
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LeftPanel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ Rectangle {
anchors.right: parent.right
text: qsTr("Address book") + translationManager.emptyString
symbol: qsTr("B") + translationManager.emptyString
dotColor: "#FF4F41"
dotColor: "#CDAE3E"
under: transferButton
onClicked: {
parent.previousButton.checked = false
Expand Down
2 changes: 1 addition & 1 deletion MiddlePanel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Rectangle {
Rectangle { height: 4; width: parent.width / 5; color: "#6B0072" }
Rectangle { height: 4; width: parent.width / 5; color: "#CEAC41" }
Rectangle { height: 4; width: parent.width / 5; color: "#FFD781" }
Rectangle { height: 4; width: parent.width / 5; color: "#FF4F41" }
Rectangle { height: 4; width: parent.width / 5; color: "#CDAE3E" }
}

ColumnLayout {
Expand Down
6 changes: 3 additions & 3 deletions components/DashboardTable.qml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ListView {
width: 14
height: width
radius: width / 2
color: out ? "#FF4F41" : "#36B05B"
color: out ? "#CDAE3E" : "#36B05B"
}

Item { //separator
Expand Down Expand Up @@ -197,15 +197,15 @@ ListView {
anchors.bottomMargin: 3
font.family: "Arial"
font.pixelSize: 16
color: out ? "#FF4F41" : "#36B05B"
color: out ? "#CDAE3E" : "#36B05B"
text: out ? "" : ""
}

Text {
anchors.bottom: parent.bottom
font.family: "Arial"
font.pixelSize: 18
color: out ? "#FF4F41" : "#36B05B"
color: out ? "#CDAE3E" : "#36B05B"
text: amount
}
}
Expand Down
2 changes: 1 addition & 1 deletion components/ProgressBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Rectangle {
width: (maxWidth * fillLevel) / 100
radius: 8
// could change color based on progressbar status; if(item.fillLevel < 99 )
color: "#CDAE3E"
color: "#CEAD34"
}

Rectangle {
Expand Down
2 changes: 1 addition & 1 deletion components/StandardDropdown.qml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Item {
font.family: SuperiorComponents.Style.fontRegular.name
font.bold: true
font.pixelSize: fontItemSize
color: itemArea.containsMouse || index === column.currentIndex || itemArea.containsMouse ? "#CDAE3E" : "#FFFFFF"
color: itemArea.containsMouse || index === column.currentIndex || itemArea.containsMouse ? "#CEAD34" : "#FFFFFF"
text: qsTr(column1) + translationManager.emptyString
}

Expand Down
2 changes: 1 addition & 1 deletion components/Style.qml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ QtObject {
property string inputBoxColor: "white"
property string legacy_placeholderFontColor: "#BABABA"

property string buttonBackgroundColor: "#CDAE3E"
property string buttonBackgroundColor: "#CEAD34"
property string buttonBackgroundColorHover: "#E65E00"
property string buttonBackgroundColorDisabled: "#707070"
property string buttonBackgroundColorDisabledHover: "#808080"
Expand Down

0 comments on commit 8f6aa86

Please sign in to comment.