23 lines
453 B
Plaintext
23 lines
453 B
Plaintext
// Wait https://github.com/facebook/flow/issues/380 to be fixed
|
|
/* eslint-disable flowtype/require-valid-file-annotation */
|
|
|
|
const blue = {
|
|
50: '#e3f2fd',
|
|
100: '#bbdefb',
|
|
200: '#90caf9',
|
|
300: '#64b5f6',
|
|
400: '#42a5f5',
|
|
500: '#2196f3',
|
|
600: '#1e88e5',
|
|
700: '#1976d2',
|
|
800: '#1565c0',
|
|
900: '#0d47a1',
|
|
A100: '#82b1ff',
|
|
A200: '#448aff',
|
|
A400: '#2979ff',
|
|
A700: '#2962ff',
|
|
contrastDefaultColor: 'light',
|
|
};
|
|
|
|
export default blue;
|