fix(theme) Update colors (#10649)

This commit is contained in:
Robert Pintilii 2021-12-17 15:05:12 +02:00 committed by GitHub
parent 8e9034601d
commit 56883f0a65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -41,8 +41,7 @@ export const colors = {
success05: '#1EC26A',
warning05: '#F8AE1A',
warning06: '#ED9E1B',
warning07: '#D77976',
warning06: '#FFD600',
disabled01: '#00000040',
@ -258,9 +257,6 @@ export const colorMap = {
// Color for indicating a raised hand
warning02: 'warning06',
// Color for insecure room
warning03: 'warning07',
// Color for disabled tab
tab01Disabled: 'disabled01',

View File

@ -2,7 +2,7 @@ import { ColorSchemeRegistry, schemeColor } from '../../../base/color-scheme';
import { BoxModel, fixAndroidViewClipping } from '../../../base/styles';
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
export const INSECURE_ROOM_NAME_LABEL_COLOR = BaseTheme.palette.warning03;
export const INSECURE_ROOM_NAME_LABEL_COLOR = BaseTheme.palette.actionDanger;
const NAVBAR_BUTTON_SIZE = 24;