1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x | const colors = require('./colors.js') module.exports = { palette: { black: colors.black, red: '#FF5252', green: '#C3D82C', yellow: '#FFC135', blue: '#42A5F5', magenta: '#D81B60', cyan: '#00ACC1', white: '#F5F5F5', lightBlack: '#708284', lightRed: '#FF5252', lightGreen: '#C3D82C', lightYellow: '#FFC135', lightBlue: '#42A5F5', lightMagenta: '#D81B60', lightCyan: '#00ACC1', lightWhite: '#F5F5F5' }, background: '#151515' } |