From b4154b336fd13b92f35114a338e742db84007a8a Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sat, 28 Oct 2023 15:18:47 +1300 Subject: [PATCH] Change pie chart colors --- AppPieChart.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/AppPieChart.tsx b/AppPieChart.tsx index 3e3c67f..21479a1 100644 --- a/AppPieChart.tsx +++ b/AppPieChart.tsx @@ -12,14 +12,13 @@ export default function AppPieChart({ options }: { options: Option[] }) { const { colors } = useTheme(); const pieChartColors = [ - "#1f77b4", // Blue - "#ff7f0e", // Orange - "#2ca02c", // Green - "#d62728", // Red - "#9467bd", // Purple - "#8c564b", // Brown - "#e377c2", // Pink - "#7f7f7f", // Gray + "#FF7F50", // Coral + "#1E90FF", // Dodger Blue + "#32CD32", // Lime Green + "#BA55D3", // Medium Orchid + "#FFD700", // Gold + "#48D1CC", // Medium Turquoise + "#FF69B4", // Hot Pink ]; const data = options.map((option, index) => ({