From a6c35305edf815736d3586819a01b7f6ab4ae1dc Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 13 Apr 2025 08:48:00 -0700 Subject: [PATCH] style: Adjust active mode toggle button colors for contrast --- aider/website/docs/leaderboards/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index 55bf2d5fc..e2d68dd62 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -451,8 +451,8 @@ document.addEventListener('DOMContentLoaded', function() { }); this.classList.add('active'); // Apply active styles directly as inline styles might interfere - this.style.backgroundColor = '#0d6efd'; // Ensure active color is applied - this.style.color = 'white'; + this.style.backgroundColor = '#e7f3ff'; // Use selected row highlight blue + this.style.color = '#495057'; // Use dark text for contrast on light blue // Update table view and apply filters updateTableView(newMode);