23 lines
456 B
Plaintext
23 lines
456 B
Plaintext
// Wait https://github.com/facebook/flow/issues/380 to be fixed
|
|
/* eslint-disable flowtype/require-valid-file-annotation */
|
|
|
|
const orange = {
|
|
50: '#fff3e0',
|
|
100: '#ffe0b2',
|
|
200: '#ffcc80',
|
|
300: '#ffb74d',
|
|
400: '#ffa726',
|
|
500: '#ff9800',
|
|
600: '#fb8c00',
|
|
700: '#f57c00',
|
|
800: '#ef6c00',
|
|
900: '#e65100',
|
|
A100: '#ffd180',
|
|
A200: '#ffab40',
|
|
A400: '#ff9100',
|
|
A700: '#ff6d00',
|
|
contrastDefaultColor: 'dark',
|
|
};
|
|
|
|
export default orange;
|