Fix bug where brand color was improperly declared

This commit is contained in:
Eric Schultz 2018-08-01 16:52:53 -05:00
parent 6777b4fc2e
commit ffa0a3c516

View file

@ -2,7 +2,7 @@
const color = require('color') const color = require('color')
module.exports = (brand_color = null) => { module.exports = (brand_color = null) => {
brandColor = brand_color || '#5FB88D' let brandColor = brand_color || '#5FB88D'
return { return {
lightest: color(brandColor).lighten(0.8).hexString() lightest: color(brandColor).lighten(0.8).hexString()
, lighter: color(brandColor).lighten(0.7).hexString() , lighter: color(brandColor).lighten(0.7).hexString()