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 pink = {
|
|
50: '#fce4ec',
|
|
100: '#f8bbd0',
|
|
200: '#f48fb1',
|
|
300: '#f06292',
|
|
400: '#ec407a',
|
|
500: '#e91e63',
|
|
600: '#d81b60',
|
|
700: '#c2185b',
|
|
800: '#ad1457',
|
|
900: '#880e4f',
|
|
A100: '#ff80ab',
|
|
A200: '#ff4081',
|
|
A400: '#f50057',
|
|
A700: '#c51162',
|
|
contrastDefaultColor: 'light',
|
|
};
|
|
|
|
export default pink;
|