From e290f9938a3ab5b31c168a44d59b9064cce18763 Mon Sep 17 00:00:00 2001 From: Malte E <97891689+maltee1@users.noreply.github.com> Date: Mon, 7 Feb 2022 22:04:49 +0100 Subject: [PATCH] Update resources/qml/delegates/Reply.qml Co-authored-by: DeepBlueV7.X --- resources/qml/delegates/Reply.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/delegates/Reply.qml b/resources/qml/delegates/Reply.qml index f5556c8b..96fa410e 100644 --- a/resources/qml/delegates/Reply.qml +++ b/resources/qml/delegates/Reply.qml @@ -134,7 +134,7 @@ Item { anchors.fill: replyContainer property color userColor: TimelineManager.userColor(userId, Nheko.colors.base) property color bgColor: Nheko.colors.base - color: Qt.rgba(userColor.r*0.1+bgColor.r*0.9,userColor.g*0.1+bgColor.g*0.9,userColor.b*0.1+bgColor.b*0.9,1) // alpha makes this mix with the bubble color + color: Qt.tint(bgColor, Qt.rgba(userColor.r, userColor.g, userColor.b, 0.1)) } }