123456789101112131415161718192021222324252627282930313233343536373839 |
- const theme = {
- reset: ['transparent', 'transparent'],
- black: '000000',
- red: 'D34F56',
- green: 'B9C954',
- yellow: 'E6C452',
- blue: '7CA7D8',
- magenta: 'C299D6',
- cyan: '73BFB1',
- white: 'FFFFFF',
- lightgrey: 'C7C7C7',
- darkgrey: 'A9A9A9',
- grey: '474747',
- dimgrey: '343434',
- };
- module.exports = theme;
|