23 lines
464 B
Plaintext
23 lines
464 B
Plaintext
// Wait https://github.com/facebook/flow/issues/380 to be fixed
|
|
/* eslint-disable flowtype/require-valid-file-annotation */
|
|
|
|
const lightGreen = {
|
|
50: '#f1f8e9',
|
|
100: '#dcedc8',
|
|
200: '#c5e1a5',
|
|
300: '#aed581',
|
|
400: '#9ccc65',
|
|
500: '#8bc34a',
|
|
600: '#7cb342',
|
|
700: '#689f38',
|
|
800: '#558b2f',
|
|
900: '#33691e',
|
|
A100: '#ccff90',
|
|
A200: '#b2ff59',
|
|
A400: '#76ff03',
|
|
A700: '#64dd17',
|
|
contrastDefaultColor: 'dark',
|
|
};
|
|
|
|
export default lightGreen;
|