From 0197df8eb79e2e67f7eef3d2d75c2f893397e717 Mon Sep 17 00:00:00 2001 From: Seyed Yahya Shirazi Date: Tue, 9 Jun 2026 17:43:59 -0700 Subject: [PATCH] feat(dashboard): modern palette for the citations chart Replace the rainbow HSL fallback with a curated Tableau-derived qualitative palette (10 saturated hues + 10 companion tones). Overflow beyond 20 series walks the HSL wheel by the golden angle so colors stay distinct and balanced instead of clustering. --- dashboard/osa/index.html | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/dashboard/osa/index.html b/dashboard/osa/index.html index 57b4c30..248fcb5 100644 --- a/dashboard/osa/index.html +++ b/dashboard/osa/index.html @@ -1173,13 +1173,23 @@

Admin: FeedbackAdmin: Feedback ({ label: labels[doi] || doi, data: years.map(y => byPaper[doi][y] || 0), - backgroundColor: seriesColor(idx, dois.length), + backgroundColor: seriesColor(idx), borderWidth: 0, }));