(chart: Chart, color1: string, color2: string)
| 3 | import { useTheme } from "./ThemeProvider"; |
| 4 | |
| 5 | function createLinearGradient(chart: Chart, color1: string, color2: string): CanvasGradient | string { |
| 6 | const gradient = chart.ctx.createLinearGradient(0, 0, 0, chart.height); |
| 7 | gradient.addColorStop(0, color1); |
| 8 | gradient.addColorStop(1, color2); |
| 9 | return gradient; |
| 10 | } |
| 11 | |
| 12 | type ChartColors = { |
| 13 | primary: string; |