@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
46 lines (44 loc) • 1.02 kB
JavaScript
class ChartColoursHelper {
pallette = [
{
name: 'blue',
hex: '#5694ca',
},
{
name: 'purple',
hex: '#912b88',
},
{
name: 'green',
hex: '#00703c',
},
{
name: 'dark_blue',
hex: '#003078',
},
{
name: 'orange',
hex: '#f47738',
},
{
name: 'orange',
hex: '#28a197',
},
];
getColourPallette = () => {
return this.pallette;
};
getHexPallette = () => {
return this.pallette.map(p => p.hex);
};
setColourStyles = (datasetIndex) => {
const hexColours = this.getHexPallette();
const colour = hexColours[datasetIndex % hexColours.length];
return {
backgroundColor: colour,
borderColor: colour,
};
};
}
export { ChartColoursHelper as default };
//# sourceMappingURL=ChartColours.js.map