mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 20:57:51 +00:00
23 lines
445 B
TypeScript
23 lines
445 B
TypeScript
export const colors = {
|
|
primary: {
|
|
DEFAULT: '#EF6C02',
|
|
emphasis: '#C85900',
|
|
muted: '#E6CCB7'
|
|
},
|
|
content: {
|
|
subtle: '#d1d5db', // gray-300
|
|
DEFAULT: '#6b7280', // gray-500
|
|
emphasis: '#374151', // gray-700
|
|
strong: '#111827', // gray-900
|
|
inverted: '#ffffff' // white
|
|
},
|
|
dark: '#091242',
|
|
secondary: '#EF6C02',
|
|
blue: {
|
|
800: '#1C1F35',
|
|
200: '#666C89',
|
|
500: '#2D3A7B',
|
|
600: '#111C55'
|
|
}
|
|
};
|