notificationItemButton.js 1.1 KB

12345678910111213141516171819202122232425262728
  1. import { ButtonTypeEnum } from '../../entities/messages';
  2. const primaryButton = {
  3. key: ButtonTypeEnum.PRIMARY,
  4. displayName: 'Primary',
  5. };
  6. const secondaryButton = {
  7. key: ButtonTypeEnum.SECONDARY,
  8. displayName: 'Secondary',
  9. };
  10. export const darkButtonStyle = {
  11. primary: {
  12. backGroundColor: 'linear-gradient(99deg,#DD2476 0% 0%, #FF512F 100% 100%)',
  13. fontColor: '#FFFFFF',
  14. removeCircleColor: 'white',
  15. },
  16. secondary: { backGroundColor: '#3D3D4D', fontColor: '#FFFFFF', removeCircleColor: '#525266' },
  17. clicked: { backGroundColor: 'white', fontColor: '#FFFFFF', removeCircleColor: '#525266' },
  18. };
  19. export const lightButtonStyle = {
  20. primary: {
  21. backGroundColor: 'linear-gradient(99deg,#DD2476 0% 0%, #FF512F 100% 100%)',
  22. fontColor: '#FFFFFF',
  23. removeCircleColor: 'white',
  24. },
  25. secondary: { backGroundColor: '#F5F8FA', fontColor: '#525266', removeCircleColor: '#525266' },
  26. clicked: { backGroundColor: 'white', fontColor: '#525266', removeCircleColor: '#525266' },
  27. };
  28. export const notificationItemButtons = [primaryButton, secondaryButton];