Update dark theme color for dashboard animator to enhance visual consistency

This commit is contained in:
Matt Batchelder
2026-02-21 10:28:20 -05:00
parent accdfa9d70
commit 5d09382d0d
2 changed files with 53 additions and 48 deletions

View File

@@ -13,7 +13,7 @@
var LINE_W = 340; // line graph width in SVG units
var PIE_R = 55; // pie chart radius
var DARK = { text: '#E0E0E0', muted: '#9E9E9E', border: '#333', center: '#222' };
var DARK = { text: '#E0E0E0', muted: '#9E9E9E', border: '#333', center: '#1A1A1A' };
var LIGHT = { text: '#333333', muted: '#666666', border: '#E0E0E0', center: '#fff' };
function isDark() { return document.documentElement.getAttribute('data-theme') === 'dark'; }