export const COLORS = {
  babyBlue: '#26DCFD',
  babyPink: '#DD94FF',
  black: '#020202',
  blackLight: '#141919',
  bubbleGreen: '#60EF5D',
  grey: '#BFBFBF',
  greyDark: '#505050',
  greyLight: '#F4F4F4',
  greyMedium: '#808080',
  lime: '#C4FF00',
  purple: '#9272FF',
  red: '#FF545D',
  transparent: 'transparent',
  white: '#FFFFFF',
};

export type Color = keyof typeof COLORS;
