diff options
author | Raquel Medina <raquel.medina@konsulko.com> | 2019-12-14 00:01:54 +0100 |
---|---|---|
committer | Raquel Medina <raquel.medina@konsulko.com> | 2019-12-14 01:17:27 +0100 |
commit | 7f14e2db1011a4ac4e81ad8dcd3a3b2459411a99 (patch) | |
tree | 51ec45ce326c8d4aba07b8ae5075768af2ef0ad6 /app/voice/ConfigDialog.qml | |
parent | 32872aa68ef8caa98ead052b91151fbed560e2bb (diff) |
voice: update colors used in dialogicefish_8.99.4icefish_8.99.3icefish/8.99.4icefish/8.99.38.99.48.99.3
Bug-AGL: SPEC-2981
Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Change-Id: Ifb0e99110fddd874f12254b8ed2fdfe31fa02aee
Diffstat (limited to 'app/voice/ConfigDialog.qml')
-rw-r--r-- | app/voice/ConfigDialog.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/voice/ConfigDialog.qml b/app/voice/ConfigDialog.qml index b04a792..dd939d2 100644 --- a/app/voice/ConfigDialog.qml +++ b/app/voice/ConfigDialog.qml @@ -130,7 +130,7 @@ Dialog { Label { id: thiswuwlabel font.pixelSize: 28 - color: '#66FF99' + color: '#848286' text: thisAgentWuW } } @@ -166,19 +166,19 @@ Dialog { Label { id: authsLabel font.pixelSize: 28 - color: (thisAgentAuthState == "UNITIALIZED")? 'red' : '#66FF99' + color: (thisAgentAuthState == "UNINITIALIZED")? '#00ADDC' : '#848286' text: thisAgentAuthState } Label { id: connslabel font.pixelSize: 28 - color: (thisAgentConnState == "DISCONNECTED")? 'red' : '#0DF9FF' + color: (thisAgentConnState == "DISCONNECTED")? '#00ADDC' : '#848286' text: thisAgentConnState } Label { id: dialogsLabel font.pixelSize: 28 - color: (thisAgentDialogState == "MICROPHONEOFF")? 'red' : '#0DF9FF' + color: (thisAgentDialogState == "MICROPHONEOFF")? '#00ADDC' : '#848286' text: thisAgentDialogState } } |