summaryrefslogtreecommitdiff
path: root/web/static/js
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-22 09:43:36 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-22 09:43:36 +0000
commit77f4aa8d1f818169490a35bf2ec3eb43e60166b4 (patch)
tree15136cca59549a52ac260950b3333484ec2db214 /web/static/js
parent7bdc204083c066a89848823bd2dc7fabef4b7f76 (diff)
feat: color clock based on build version hash
Embeds the build version as a data attribute on #last-updated and derives an HSL hue from the first 6 hex chars, matching the claudomator logo color technique. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/static/js')
-rw-r--r--web/static/js/app.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/web/static/js/app.js b/web/static/js/app.js
index 954dc8c..37d2a30 100644
--- a/web/static/js/app.js
+++ b/web/static/js/app.js
@@ -3,6 +3,16 @@
// Constants
const AUTO_REFRESH_INTERVAL = 5 * 60 * 1000; // 5 minutes in milliseconds
+// Color the clock based on the build version hash
+(function applyVersionColor() {
+ const el = document.getElementById('last-updated');
+ if (!el) return;
+ const ver = el.dataset.buildVersion || '';
+ const hex = ver.replace(/[^0-9a-f]/gi, '').slice(0, 6).padEnd(6, '0');
+ const hue = Math.round((parseInt(hex, 16) / 0xffffff) * 360);
+ el.style.color = `hsl(${hue}, 70%, 65%)`;
+})();
+
// Timeline Calendar Initialization
function initTimelineCalendar(calendarId, nowLineId, untimedSectionId) {
const calendar = document.getElementById(calendarId);