const white = '#fff';
const black = '#111';

const colors = {
  blue: '#cb3fff',
  common: {
    black,
    white,
  },
  primary: {
    main: '#8ef300',
    light: '#146DD6',
    contrastText: white,
  },
  error: {
    main: '#A51C30',
    light: '#A7333F',
    contrastText: white,
  },
  grey: {
    100: '#EAEAEA',
    200: '#C9C5C5',
    300: '#888',
    400: '#666',
  },
};
export const theme2 = {
  colors,
};
