12345678910111213141516171819202122232425262728 |
- import { ButtonTypeEnum } from '../../entities/messages';
- const primaryButton = {
- key: ButtonTypeEnum.PRIMARY,
- displayName: 'Primary',
- };
- const secondaryButton = {
- key: ButtonTypeEnum.SECONDARY,
- displayName: 'Secondary',
- };
- export const darkButtonStyle = {
- primary: {
- backGroundColor: 'linear-gradient(99deg,#DD2476 0% 0%, #FF512F 100% 100%)',
- fontColor: '#FFFFFF',
- removeCircleColor: 'white',
- },
- secondary: { backGroundColor: '#3D3D4D', fontColor: '#FFFFFF', removeCircleColor: '#525266' },
- clicked: { backGroundColor: 'white', fontColor: '#FFFFFF', removeCircleColor: '#525266' },
- };
- export const lightButtonStyle = {
- primary: {
- backGroundColor: 'linear-gradient(99deg,#DD2476 0% 0%, #FF512F 100% 100%)',
- fontColor: '#FFFFFF',
- removeCircleColor: 'white',
- },
- secondary: { backGroundColor: '#F5F8FA', fontColor: '#525266', removeCircleColor: '#525266' },
- clicked: { backGroundColor: 'white', fontColor: '#525266', removeCircleColor: '#525266' },
- };
- export const notificationItemButtons = [primaryButton, secondaryButton];
|