notificationItemButton.js 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.notificationItemButtons = exports.lightButtonStyle = exports.darkButtonStyle = void 0;
  4. const messages_1 = require("../../entities/messages");
  5. const primaryButton = {
  6. key: messages_1.ButtonTypeEnum.PRIMARY,
  7. displayName: 'Primary',
  8. };
  9. const secondaryButton = {
  10. key: messages_1.ButtonTypeEnum.SECONDARY,
  11. displayName: 'Secondary',
  12. };
  13. exports.darkButtonStyle = {
  14. primary: {
  15. backGroundColor: 'linear-gradient(99deg,#DD2476 0% 0%, #FF512F 100% 100%)',
  16. fontColor: '#FFFFFF',
  17. removeCircleColor: 'white',
  18. },
  19. secondary: { backGroundColor: '#3D3D4D', fontColor: '#FFFFFF', removeCircleColor: '#525266' },
  20. clicked: { backGroundColor: 'white', fontColor: '#FFFFFF', removeCircleColor: '#525266' },
  21. };
  22. exports.lightButtonStyle = {
  23. primary: {
  24. backGroundColor: 'linear-gradient(99deg,#DD2476 0% 0%, #FF512F 100% 100%)',
  25. fontColor: '#FFFFFF',
  26. removeCircleColor: 'white',
  27. },
  28. secondary: { backGroundColor: '#F5F8FA', fontColor: '#525266', removeCircleColor: '#525266' },
  29. clicked: { backGroundColor: 'white', fontColor: '#525266', removeCircleColor: '#525266' },
  30. };
  31. exports.notificationItemButtons = [primaryButton, secondaryButton];