statsys/www/themes/monochrome.css
trafficlunar def80333da feat: page style changes
- use CSS variables for colors
- attempt to fix mobile support (tooltips are still kinda broken)
- use 1 decimal place for uptime percentages
2025-12-16 22:34:47 +00:00

39 lines
1,014 B
CSS

/* Monochrome Theme - default (as seen in index.html) */
:root {
--bg-body: #fafafa;
--bg-main: white;
--text-primary: black;
--text-secondary: rgba(0, 0, 0, 0.6);
--border-primary: black;
--border-secondary: rgba(0, 0, 0, 0.5);
--border-subtle: rgba(0, 0, 0, 0.1);
--border-dotted: rgba(0, 0, 0, 0.1);
--border-outline: rgba(0, 0, 0, 0.04);
--accent-primary: black;
--accent-secondary: white;
--accent-tertiary: rgba(0, 0, 0, 0.4);
--accent-muted: rgba(0, 0, 0, 0.3);
--accent-faded: rgba(0, 0, 0, 0.2);
--status-online: black;
--status-online-border: unset;
--status-degraded: white;
--status-degraded-pattern: black;
--status-degraded-border: unset;
--status-offline: white;
--status-offline-x: black;
--status-offline-border: unset;
--status-unknown: rgb(235, 235, 235);
--hover-bg: rgba(0, 0, 0, 0.03);
--hover-text: black;
--selected-bg: rgba(0, 0, 0, 0.08);
--tooltip-bg: black;
--tooltip-text: white;
--tooltip-border: transparent;
--shadow-color: rgba(0, 0, 0, 0.1);
}