make url color blue

This commit is contained in:
Iuri Matias 2021-05-05 14:23:43 -04:00
parent cfe2139524
commit 3f35bad846
4 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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};` +