americanize fox colors

This commit is contained in:
Jeffrey Sun 2017-06-12 18:16:26 -07:00
parent 8e7aef421a
commit 5f34b2af88
2 changed files with 29 additions and 9 deletions

16
js/constants/colors.js Normal file
View file

@ -0,0 +1,16 @@
var head = {
brick: [0, 62, 53],
yellow: [48, 100, 64]
}
var bg = {
forest: '#006375',
green: '#63D6A3',
blue: '#358EFF',
salmon: '#FF9B7A',
coral: '#F96854',
}
module.exports = {
head: head,
bg: bg
};