# Dashboard Patterns Building blocks for UI/dashboard mockups inside a concept diagram — admin panels, monitoring dashboards, control interfaces, status displays. ## Pattern A "screen" is a rounded dark rect inside a lighter "frame" rect, with chart/gauge/indicator elements nested on top. ```xml 78% ``` ## CSS ```css .dashboard { fill: #F1EFE8; stroke: #5F5E5A; stroke-width: 1.5; } .screen { fill: #1a1a18; } .screen-content { fill: #2C2C2A; } .screen-chart { fill: #5DCAA5; } .screen-bar { fill: #7F77DD; } .screen-alert { fill: #E24B4A; } ``` ## Tips - Dashboard screens stay dark in both light and dark mode — they represent actual monitor glass. - Keep on-screen text small (`font-size:8px` or `10px`) and high-contrast (near-white fill on dark). - Use the status triad green/amber/red consistently — OK / warning / alert. - A single dashboard usually sits on top of an infrastructure hub diagram as a unified view (see `examples/smart-city-infrastructure.md`).