summaryrefslogtreecommitdiffstats
path: root/resources/qml/Reactions.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-05-05 23:43:43 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-05-05 23:43:43 +0200
commite55a09906fa9dbb15a5e8f07d23f651ef246613d (patch)
tree9298e2c57ced30cc4e309ce014d139255cf6ca16 /resources/qml/Reactions.qml
parentca5490074accd61682b9cf11d92914e21efbc35e (diff)
Misc color fixes
Diffstat (limited to 'resources/qml/Reactions.qml')
-rw-r--r--resources/qml/Reactions.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/qml/Reactions.qml b/resources/qml/Reactions.qml
index a33d5f61..c70519a4 100644
--- a/resources/qml/Reactions.qml
+++ b/resources/qml/Reactions.qml
@@ -32,7 +32,7 @@ Flow {
text: reaction.text
font.family: settings.emoji_font_family
opacity: enabled ? 1.0 : 0.3
- color: reaction.hovered ? colors.highlight : colors.buttonText
+ color: reaction.hovered ? colors.highlight : colors.text
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
@@ -41,7 +41,7 @@ Flow {
Rectangle {
height: reactionText.implicitHeight
width: 1
- color: reaction.hovered ? colors.highlight : colors.buttonText
+ color: reaction.hovered ? colors.highlight : colors.text
}
Text {
@@ -49,7 +49,7 @@ Flow {
text: model.counter
font: reaction.font
opacity: enabled ? 1.0 : 0.3
- color: reaction.hovered ? colors.highlight : colors.buttonText
+ color: reaction.hovered ? colors.highlight : colors.text
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
@@ -61,8 +61,8 @@ Flow {
implicitWidth: reaction.implicitWidth
implicitHeight: reaction.implicitHeight
opacity: enabled ? 1 : 0.3
- border.color: (reaction.hovered || model.selfReacted )? colors.highlight : colors.buttonText
- color: colors.dark
+ border.color: (reaction.hovered || model.selfReacted )? colors.highlight : colors.text
+ color: colors.base
border.width: 1
radius: reaction.height / 2.0
}