This commit is contained in:
staked-smart-ace 2021-01-14 03:04:20 +04:00 committed by Iuri Matias
parent be8e2c82f0
commit 96b09fd025
5 changed files with 5 additions and 1 deletions

View File

@ -50,6 +50,7 @@ Theme {
property color chatReplyCurrentUser: lightGrey property color chatReplyCurrentUser: lightGrey
property color topBarChatInfoColor: evenDarkerGrey property color topBarChatInfoColor: evenDarkerGrey
property color codeBackground: "#2E386B" property color codeBackground: "#2E386B"
property color primarySelectionColor: "#b4c8ff"
property color buttonForegroundColor: blue property color buttonForegroundColor: blue
property color buttonBackgroundColor: secondaryBackground property color buttonBackgroundColor: secondaryBackground

View File

@ -49,6 +49,7 @@ Theme {
property color chatReplyCurrentUser: darkGrey property color chatReplyCurrentUser: darkGrey
property color topBarChatInfoColor: grey property color topBarChatInfoColor: grey
property color codeBackground: "#2E386B" property color codeBackground: "#2E386B"
property color primarySelectionColor: "#b4c8ff"
property color buttonForegroundColor: blue property color buttonForegroundColor: blue
property color buttonBackgroundColor: secondaryBackground property color buttonBackgroundColor: secondaryBackground

View File

@ -37,6 +37,7 @@ QtObject {
property color secondaryBackground property color secondaryBackground
property color modalBackground property color modalBackground
property color codeBackground property color codeBackground
property color primarySelectioncolor
property color buttonForegroundColor property color buttonForegroundColor
property color buttonBackgroundColor property color buttonBackgroundColor

View File

@ -7,5 +7,5 @@ TextField {
color: readOnly ? Style.current.secondaryText : Style.current.textColor color: readOnly ? Style.current.secondaryText : Style.current.textColor
selectByMouse: !readOnly selectByMouse: !readOnly
selectedTextColor: Style.current.textColor selectedTextColor: Style.current.textColor
selectionColor: Style.current.secondaryHover selectionColor: Style.current.primarySelectionColor
} }

View File

@ -654,6 +654,7 @@ Rectangle {
background: Rectangle { background: Rectangle {
color: "transparent" color: "transparent"
} }
selectionColor: Style.current.primarySelectionColor
} }
Action { Action {
shortcut: StandardKey.Bold shortcut: StandardKey.Bold