Massive/colors.ts

14 lines
341 B
TypeScript
Raw Normal View History

2022-09-25 04:32:49 +00:00
export const lightColors = [
2022-09-28 01:06:44 +00:00
{hex: '#FA8072', name: 'Salmon'},
2022-09-25 04:32:49 +00:00
{hex: '#B3E5FC', name: 'Cyan'},
{hex: '#FFC0CB', name: 'Pink'},
{hex: '#E9DCC9', name: 'Linen'},
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'},
{hex: '#CD5C5C', name: 'Red'},
2022-09-25 04:32:49 +00:00
];