From 207dead909ee1bd246cc23f4762b1662259c480a Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sun, 24 May 2026 20:20:42 -0400 Subject: [PATCH] monitor: darken transcode stream bar to deep orange (#e65100) --- Plugin/usr/local/emhttp/plugins/varaverk/pages/monitor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugin/usr/local/emhttp/plugins/varaverk/pages/monitor.php b/Plugin/usr/local/emhttp/plugins/varaverk/pages/monitor.php index 25fac9f..718545c 100644 --- a/Plugin/usr/local/emhttp/plugins/varaverk/pages/monitor.php +++ b/Plugin/usr/local/emhttp/plugins/varaverk/pages/monitor.php @@ -952,7 +952,7 @@ function vvRenderStreams() { const isLive = s.type === 'LiveTvProgram' || s.dur_sec === 0; const inc = s.paused ? 0 : elapsed; const curSec = Math.max(0, (s.pos_sec ?? 0) + inc); - const barColor = isLive ? '#1e3a5a' : (s.is_tc ? '#ff9800' : '#4caf50'); + const barColor = isLive ? '#1e3a5a' : (s.is_tc ? '#e65100' : '#4caf50'); const tcColor = s.paused ? '#fdd835' : '#555'; const icon = s.paused ? '⏸' : '▶';