foxy-moxy/js/constants/colors.js

17 lines
223 B
JavaScript
Raw Normal View History

2017-06-13 01:25:34 +00:00
const head = {
2017-06-13 01:39:14 +00:00
brick: [0, 62, 53],
yellow: [48, 100, 64]
2017-06-13 01:16:26 +00:00
}
2017-06-13 01:25:34 +00:00
const bg = {
2017-06-13 01:39:14 +00:00
forest: '#006375',
green: '#63D6A3',
blue: '#358EFF',
salmon: '#FF9B7A',
coral: '#F96854'
2017-06-13 01:16:26 +00:00
}
module.exports = {
2017-06-13 01:39:14 +00:00
head: head,
bg: bg
}