- replace fragile Docker file bind mount with persistent /data storage - add container entrypoint to link config.json from persistent storage - tighten Docker image permissions and add a basic healthcheck - add .dockerignore to keep git metadata and runtime files out of the image - bundle hls.js locally instead of loading it from a CDN - download and serve UI/theme fonts locally instead of Google Fonts - update service worker cache entries for local assets - refresh README to reflect local bundled assets and cleaner deployment docs
25 lines
540 B
CSS
25 lines
540 B
CSS
/*
|
|
* GridTV Theme — Default (Dark Studio)
|
|
* Salle de régie sombre, la base.
|
|
*/
|
|
|
|
:root {
|
|
--bg: #0a0b0d;
|
|
--surface: #111318;
|
|
--surface2: #181b22;
|
|
--border: #232733;
|
|
--border-bright: #2e3444;
|
|
--accent: #e8c842;
|
|
--accent2: #4a9eff;
|
|
--accent-live: #ff4444;
|
|
--text: #c8cdd8;
|
|
--text-dim: #5a6070;
|
|
--text-bright: #eef0f5;
|
|
--prog-bg: #141820;
|
|
--prog-border: #1e2a3a;
|
|
--prog-live-bg: #0d2040;
|
|
--prog-live-border: #4a9eff;
|
|
--font-ui: 'Barlow Condensed', sans-serif;
|
|
--font-mono: 'Share Tech Mono', monospace;
|
|
}
|