(index: number)
| 9 | // export const theme = resolvedTailwindConfig.theme as Record<string, any>; |
| 10 | |
| 11 | export function getChartColor(index: number): string { |
| 12 | return chartColors[index % chartColors.length]?.main || chartColors[0].main; |
| 13 | } |
| 14 | |
| 15 | export function getChartTranslucentColor(index: number): string { |
| 16 | return ( |
no outgoing calls
no test coverage detected