Massive/colors.ts

12 lines
272 B
TypeScript
Raw Normal View History

2022-09-25 04:32:49 +00:00
export const lightColors = [
{hex: '#B3E5FC', name: 'Cyan'},
{hex: '#FFC0CB', name: 'Pink'},
2022-09-25 04:43:29 +00:00
{hex: '#FFFFFF', name: 'White'},
2022-09-25 04:32:49 +00:00
];
export const darkColors = [
{hex: '#8156A7', name: 'Purple'},
{hex: '#007AFF', name: 'Blue'},
2022-09-25 04:43:29 +00:00
{hex: '#000000', name: 'Black'},
2022-09-25 04:32:49 +00:00
];