monitor: darken transcode stream bar to deep orange (#e65100)

This commit is contained in:
Gmer4Lfe
2026-05-24 20:20:42 -04:00
parent 2128539450
commit 207dead909
@@ -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 ? '⏸' : '▶';