Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(theme) Update colors #10649

Merged
merged 1 commit into from
Dec 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions react/features/base/ui/Tokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ export const colors = {
success05: '#1EC26A',

warning05: '#F8AE1A',
warning06: '#ED9E1B',
warning07: '#D77976',
warning06: '#FFD600',

disabled01: '#00000040',

Expand Down Expand Up @@ -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',

Expand Down
2 changes: 1 addition & 1 deletion react/features/conference/components/native/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down