From e9753378cf218f42bdb9c88284ca7fa142dfb74e Mon Sep 17 00:00:00 2001 From: Gabriel Selzer Date: Thu, 2 Apr 2026 11:22:52 -0500 Subject: [PATCH] Dygraph: Inherit label colors Enhances label contrast on dark themes --- _pages/update-sites/stats.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_pages/update-sites/stats.md b/_pages/update-sites/stats.md index 9c38a9474..39555f7e3 100644 --- a/_pages/update-sites/stats.md +++ b/_pages/update-sites/stats.md @@ -44,6 +44,11 @@ section: Extend:Update Sites padding: 20px; text-align: center; } +/* Dygraphs hardcodes color:black on axis labels; override to inherit the + page's text color so labels remain readable on dark themes. */ +.dygraph-axis-label { + color: inherit; +}