fix(ChatInput): Mentions have very bad color/contrast ratio in dark mode

Modified color text into the corresponding tag.

Fixes #5877
This commit is contained in:
Noelia 2022-06-01 16:34:52 +02:00 committed by Noelia
parent 341e7ac081
commit 9e89915414
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ QtObject {
readonly property var acceptedImageExtensions: [".png", ".jpg", ".jpeg", ".svg", ".gif"]
readonly property var acceptedDragNDropImageExtensions: [".png", ".jpg", ".jpeg", ".heif", "tif", ".tiff"]
readonly property string mentionSpanTag: `<span style="color:${Style.current.mentionColor}; background-color: ${Style.current.mentionBgColor};"><a style="text-decoration:none" href='http://'>`
readonly property string mentionSpanTag: `<span style="background-color: ${Style.current.mentionBgColor};"><a style="color:${Style.current.mentionColor};text-decoration:none" href='http://'>`
readonly property string ens_taken: "taken"
readonly property string ens_taken_custom: "taken-custom"