From f4aba551a2027827b3e2cb3532cfe6962a1a4a51 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Mon, 4 May 2026 20:38:13 +0200 Subject: [PATCH] fix: derive heatmap color from primary instead of hardcoded blue --- crates/adapters/template-askama/templates/profile.html | 2 +- static/style.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/adapters/template-askama/templates/profile.html b/crates/adapters/template-askama/templates/profile.html index 3730fa4..9a942b2 100644 --- a/crates/adapters/template-askama/templates/profile.html +++ b/crates/adapters/template-askama/templates/profile.html @@ -37,7 +37,7 @@
Movies watched this year
{% for cell in heatmap %} -
+
{{ cell.count }}
{{ cell.month_label }}
diff --git a/static/style.css b/static/style.css index 4b84305..17d635e 100644 --- a/static/style.css +++ b/static/style.css @@ -471,6 +471,7 @@ form button[type="submit"]:hover { text-align: center; min-height: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; + background: oklch(85.2% 0.199 91.936 / var(--alpha, 0.05)); } .heatmap-count { font-size: 0.85rem; font-weight: 700; } .heatmap-month { font-size: 0.65rem; opacity: 0.6; margin-top: 2px; }