From 70581f00d938b8c204769246fe4f40bc573e9e02 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 3 Jan 2026 20:22:19 +0100 Subject: [PATCH] feat: add better colors --- src/modules/heijkunka/HeijunkaStat.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/modules/heijkunka/HeijunkaStat.vue b/src/modules/heijkunka/HeijunkaStat.vue index 0eb60dc..79a15e7 100644 --- a/src/modules/heijkunka/HeijunkaStat.vue +++ b/src/modules/heijkunka/HeijunkaStat.vue @@ -39,7 +39,18 @@ const renderChart = () => { }, options: { showLegend: true, - fontFamily: 'Noto Serif' + fontFamily: 'Noto Serif', + dataColors: [ + '#55efc4', + '#00b894', + '#81ecec', + '#00cec9', + '#74b9ff', + '#0984e3', + '#a29bfe', + '#6c5ce7' + ], + strokeColor: 'var(--primary-color)' } } new chartXkcd.Bar(svgElement.value, config)