2018-03-25 18:03:08 +00:00
|
|
|
// License: LGPL-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
const color = require('color')
|
|
|
|
|
|
|
|
var brandColor = app.nonprofit.brand_color || '#5FB88D'
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
lightest: color(brandColor).lighten(0.8).hexString()
|
|
|
|
, lighter: color(brandColor).lighten(0.7).hexString()
|
|
|
|
, light: color(brandColor).lighten(0.5).hexString()
|
|
|
|
, base: brandColor
|
|
|
|
, dark: color(brandColor).darken(0.1).hexString()
|
|
|
|
, darker: color(brandColor).darken(0.3).hexString()
|
|
|
|
, grey: "#636363"
|
|
|
|
, light_grey: "rgb(248, 248, 248)"
|
|
|
|
}
|
|
|
|
|