17 lines
440 B
TypeScript
17 lines
440 B
TypeScript
|
|
/** Bar fill colors aligned with the dark dashboard accent palette. */
|
||
|
|
export const TODAY_CHART_COLORS = [
|
||
|
|
'#00bcff',
|
||
|
|
'#e1bc72',
|
||
|
|
'#98d8b5',
|
||
|
|
'#cfb8f7',
|
||
|
|
'#f8c9a6',
|
||
|
|
'#f4b6b6',
|
||
|
|
'#abd8f3',
|
||
|
|
'#cbe9a1',
|
||
|
|
] as const;
|
||
|
|
|
||
|
|
export const TODAY_CHART_AXIS_COLOR = '#8ea3bf';
|
||
|
|
export const TODAY_CHART_GRID_COLOR = 'rgba(41, 69, 106, 0.55)';
|
||
|
|
export const TODAY_CHART_TOOLTIP_BG = '#14253d';
|
||
|
|
export const TODAY_CHART_TOOLTIP_BORDER = '#29456a';
|