From 1e689a69a85a254ac113ed7cf8f3bcbfecd03639 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 3 Dec 2024 16:47:18 -0800 Subject: [PATCH] style: standardize legend text color to match chart defaults --- aider/website/_includes/qwq-chart.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/aider/website/_includes/qwq-chart.js b/aider/website/_includes/qwq-chart.js index 2dd95546a..d4270b3d1 100644 --- a/aider/website/_includes/qwq-chart.js +++ b/aider/website/_includes/qwq-chart.js @@ -58,13 +58,15 @@ document.addEventListener('DOMContentLoaded', function () { text: 'Solo model', fillStyle: 'rgba(75, 192, 192, 0.2)', strokeStyle: 'rgba(75, 192, 192, 1)', - lineWidth: 1 + lineWidth: 1, + fontColor: '#666' }, { text: 'Architect + Editor', fillStyle: 'rgba(54, 162, 235, 0.2)', strokeStyle: 'rgba(54, 162, 235, 1)', - lineWidth: 1 + lineWidth: 1, + fontColor: '#666' } ]; }