fix(journey): expand DAY_COLORS to 30 unique colors to cover a full month

This commit is contained in:
jubnl
2026-04-21 21:40:17 +02:00
parent bd6cd55a13
commit c912ad4b01
+30 -10
View File
@@ -1,12 +1,32 @@
export const DAY_COLORS = [
'#6366f1',
'#f97316',
'#14b8a6',
'#ec4899',
'#22c55e',
'#3b82f6',
'#a855f7',
'#ef4444',
'#f59e0b',
'#06b6d4',
'#6366f1', // indigo
'#f97316', // orange
'#14b8a6', // teal
'#ec4899', // pink
'#22c55e', // green
'#3b82f6', // blue
'#a855f7', // purple
'#ef4444', // red
'#f59e0b', // amber
'#06b6d4', // cyan
'#84cc16', // lime
'#f43f5e', // rose
'#8b5cf6', // violet
'#10b981', // emerald
'#fb923c', // orange-400
'#60a5fa', // blue-400
'#c084fc', // purple-400
'#34d399', // emerald-400
'#fbbf24', // amber-400
'#e879f9', // fuchsia
'#4ade80', // green-400
'#f87171', // red-400
'#38bdf8', // sky-400
'#a3e635', // lime-400
'#fb7185', // rose-400
'#818cf8', // indigo-400
'#2dd4bf', // teal-400
'#facc15', // yellow
'#c026d3', // fuchsia-600
'#0ea5e9', // sky-500
]