mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-04-30 15:20:20 +00:00
Replace tokens with ones that are part of the Design System and are either the same or very similar
79 lines
1.5 KiB
TypeScript
79 lines
1.5 KiB
TypeScript
import BaseTheme from '../../../ui/components/BaseTheme.native';
|
|
|
|
const BUTTON_HEIGHT = BaseTheme.spacing[7];
|
|
|
|
const button = {
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
display: 'flex',
|
|
height: BUTTON_HEIGHT,
|
|
justifyContent: 'center'
|
|
};
|
|
|
|
const buttonLabel = {
|
|
...BaseTheme.typography.bodyShortBold,
|
|
lineHeight: 14,
|
|
textTransform: 'capitalize'
|
|
};
|
|
|
|
export default {
|
|
button: {
|
|
...button
|
|
},
|
|
|
|
buttonLabel: {
|
|
...buttonLabel
|
|
},
|
|
|
|
buttonLabelDisabled: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.text03
|
|
},
|
|
|
|
buttonContent: {
|
|
height: BUTTON_HEIGHT
|
|
},
|
|
|
|
buttonDisabled: {
|
|
...button,
|
|
backgroundColor: BaseTheme.palette.ui08
|
|
},
|
|
|
|
buttonLabelPrimary: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.text01
|
|
},
|
|
|
|
buttonLabelPrimaryText: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.action01
|
|
},
|
|
|
|
buttonLabelSecondary: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.text04
|
|
},
|
|
|
|
buttonLabelDestructive: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.text01
|
|
},
|
|
|
|
buttonLabelDestructiveText: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.actionDanger
|
|
},
|
|
|
|
buttonLabelTertiary: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.text01,
|
|
marginHorizontal: BaseTheme.spacing[2],
|
|
textAlign: 'center'
|
|
},
|
|
|
|
buttonLabelTertiaryDisabled: {
|
|
...buttonLabel,
|
|
color: BaseTheme.palette.text03,
|
|
textAlign: 'center'
|
|
}
|
|
};
|