constants.js 1.52 KB
Newer Older
Giang Tran committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
export const PURPLE_COLOR = '#6441A4';
export const WHITE_COLOR = 'whitesmoke';
export const ITEMS = [
  {
    color: '#2B73B6',
    type: 'info',
    message:
      "System is going down at 12 AM tonight for routine maintenance. We'll notify you when the system is back online.",
  },
  {
    color: '#cd853f',
    type: 'warn',
    message:
      'Your cloud drive is about to reach capacity. Please consider upgrading to premium plan.',
  },
  {
    color: '#cc3232',
    type: 'error',
    message:
      "Sorry, we're having some technical difficulties. Our team will get this fixed for you ASAP.",
  },
  {
    color: '#32A54A',
    type: 'success',
    message:
      "Thank you for your order. We will email and charge you when it's on it's way.",
  },
  {
    color: PURPLE_COLOR,
    type: 'custom',
    message:
      'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.',
  },
  {type: 'close', title: 'close'},
  {type: 'show', title: 'enqueue all alerts'},
  {type: 'clear', title: 'clear queue'},
];
export const ReactNativeLogo =
  'https://reactnative.dev/docs/assets/favicon.png';
export const InfoIcon = require('../assets/images/addImg.png');