23 lines
452 B
Plaintext
23 lines
452 B
Plaintext
// Wait https://github.com/facebook/flow/issues/380 to be fixed
|
|
/* eslint-disable flowtype/require-valid-file-annotation */
|
|
|
|
const cyan = {
|
|
50: '#e0f7fa',
|
|
100: '#b2ebf2',
|
|
200: '#80deea',
|
|
300: '#4dd0e1',
|
|
400: '#26c6da',
|
|
500: '#00bcd4',
|
|
600: '#00acc1',
|
|
700: '#0097a7',
|
|
800: '#00838f',
|
|
900: '#006064',
|
|
A100: '#84ffff',
|
|
A200: '#18ffff',
|
|
A400: '#00e5ff',
|
|
A700: '#00b8d4',
|
|
contrastDefaultColor: 'dark',
|
|
};
|
|
|
|
export default cyan;
|