diff --git a/ui/imports/Themes/DarkTheme.qml b/ui/imports/Themes/DarkTheme.qml index c5b74872be..2fa909f8b3 100644 --- a/ui/imports/Themes/DarkTheme.qml +++ b/ui/imports/Themes/DarkTheme.qml @@ -39,6 +39,7 @@ Theme { property color separator: tenPercentWhite property color textColor: white property color textColorTertiary: blue + property color linkColor: blue property color currentUserTextColor: white property color secondaryBackground: "#353a4d" property color inputBackground: darkGrey diff --git a/ui/imports/Themes/LightTheme.qml b/ui/imports/Themes/LightTheme.qml index 432fa23c77..b6e8fb37db 100644 --- a/ui/imports/Themes/LightTheme.qml +++ b/ui/imports/Themes/LightTheme.qml @@ -39,6 +39,7 @@ Theme { property color separator: grey property color textColor: black property color textColorTertiary: blue + property color linkColor: blue property color currentUserTextColor: white property color secondaryBackground: lightBlue property color inputBackground: grey diff --git a/ui/imports/Themes/Theme.qml b/ui/imports/Themes/Theme.qml index 3ffea43450..69c804bce0 100644 --- a/ui/imports/Themes/Theme.qml +++ b/ui/imports/Themes/Theme.qml @@ -37,6 +37,7 @@ QtObject { property color backgroundHoverLight property color border property color textColor + property color linkColor property color secondaryText property color currentUserTextColor property color secondaryBackground diff --git a/ui/imports/Utils.qml b/ui/imports/Utils.qml index bc4044cb6c..f312a244a4 100644 --- a/ui/imports/Utils.qml +++ b/ui/imports/Utils.qml @@ -61,7 +61,7 @@ QtObject { `line-height: 22px;` + `}` + `a {` + - `color: ${isCurrentUser && !useCompactMode ? Style.current.white : Style.current.textColor};` + + `color: ${Style.current.linkColor};` + `}` + `a.mention {` + `color: ${Style.current.mentionColor};` +