transcend-charts
Version:
Transcend is a charting and graph library for NUVI
106 lines (82 loc) • 3.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = {
graphite: {
BRAND_COLOR: '#54c7dd', // tanager blue
MALE_COLOR: '#126bb5', // blue
FEMALE_COLOR: '#ef7a90', // pink
UNKNOWN_GENDER_COLOR: '#47C3F9',
POSITIVE_COLOR: '#83c25a', // green
NEGATIVE_COLOR: '#ef463f', // red
NEUTRAL_COLOR: '#47C3F9',
GRID_COLOR: '#606060', // gray
BACKGROUND_COLOR: '#38383a',
LABEL_COLOR: '#888888', // gray
VALUE_COLOR: '#ffffff',
OVERLAY_COLOR: '#ffffff', // this should be converted to a Color object and faded as required
KNOCKOUT_COLOR: '#38383a',
palettes: {
BRIGHT: ['#54c7dd', '#f8941a', '#83c25a', '#ef463f', '#ffdb48', '#ef7a90', '#126bb5'],
MONOCHROMATIC: ['#54c7dd', '#4bafc0', '#4998a6', '#46808d', '#465054']
}
},
light: {
BRAND_COLOR: '#54c7dd', // tanager blue
MALE_COLOR: '#126bb5', // blue
FEMALE_COLOR: '#ef7a90', // pink
UNKNOWN_GENDER_COLOR: '#B3B3B3',
POSITIVE_COLOR: '#83c25a', // green
NEGATIVE_COLOR: '#DB2900', // red
NEUTRAL_COLOR: '#292929',
GRID_COLOR: '#cccccc', // gray
BACKGROUND_COLOR: '#f2f2f2', // light gray
LABEL_COLOR: '#888888', // gray
VALUE_COLOR: '#888888',
OVERLAY_COLOR: '#888888', // this should be converted to a Color object and faded as required
KNOCKOUT_COLOR: '#ffffff',
palettes: {
BRIGHT: ['#54c7dd', '#f68d3f', '#83c25a', '#ef463f', '#ffdb48', '#ef7a90', '#126bb5'],
MONOCHROMATIC: ['#54c7dd', '#65c9db', '#7ccbd9', '#91cdd8', '#a7ced5']
}
},
uberlight: {
BRAND_COLOR: '#54c7dd', // tanager blue
MALE_COLOR: '#126bb5', // blue
FEMALE_COLOR: '#ef7a90', // pink
UNKNOWN_GENDER_COLOR: '#B3B3B3',
POSITIVE_COLOR: '#83c25a', // green
NEGATIVE_COLOR: '#DB2900', // red
NEUTRAL_COLOR: '#bcbcbc',
GRID_COLOR: '#cccccc', // gray
BACKGROUND_COLOR: 'transparent',
LABEL_COLOR: '#888888', // gray
VALUE_COLOR: '#888888',
OVERLAY_COLOR: '#888888', // this should be converted to a Color object and faded as required
KNOCKOUT_COLOR: '#ffffff',
palettes: {
BRIGHT: ['#54c7dd', '#f68d3f', '#83c25a', '#ef463f', '#ffdb48', '#ef7a90', '#126bb5'],
MONOCHROMATIC: ['#54c7dd', '#65c9db', '#7ccbd9', '#91cdd8', '#a7ced5']
}
},
report: {
BRAND_COLOR: '#54c7dd', // tanager blue
MALE_COLOR: '#126bb5', // blue
FEMALE_COLOR: '#ef7a90', // pink
UNKNOWN_GENDER_COLOR: '#B3B3B3',
POSITIVE_COLOR: '#83c25a', // green
NEGATIVE_COLOR: '#DB2900', // red
NEUTRAL_COLOR: '#292929',
GRID_COLOR: '#cccccc', // gray
BACKGROUND_COLOR: '#f2f2f2', // light gray
LABEL_COLOR: '#888888', // gray
VALUE_COLOR: '#888888',
OVERLAY_COLOR: '#888888', // this should be converted to a Color object and faded as required
KNOCKOUT_COLOR: '#ffffff',
palettes: {
BRIGHT: ['#54c7dd', '#f68d3f', '#83c25a', '#ef463f', '#ffdb48', '#ef7a90', '#126bb5'],
MONOCHROMATIC: ['#54c7dd', '#65c9db', '#7ccbd9', '#91cdd8', '#a7ced5']
}
}
};