SKILL: Industrial Brutalism & Tactical Telemetry UI
Overview
Advanced proficiency in architecting web interfaces that synthesize mid-century Swiss Typographic design, industrial manufacturing manuals, and retro-futuristic aerospace/military terminal interfaces. This discipline requires absolute mastery over rigid modular grids, extreme typographic scale contrast, purely utilitarian color palettes, and the programmatic simulation of analog degradation (halftones, CRT scanlines, bitmap dithering). The objective is to construct digital environments that project raw functionality, mechanical precision, and high data density, deliberately discarding conventional consumer UI patterns.
When to Use
- When building data-heavy telemetry dashboards, analytics monitors, trading systems, or developer command centers.
- When creating editorial portfolios, archival indexes, or technical documentation sites requiring an industrial blueprint aesthetic.
- When explicitly prompted for "brutalist", "tactical", "terminal", "Swiss print", or "mechanical" aesthetics.
Rules & Patterns
1. Visual Archetypes
Pick ONE per project and commit to it. Do not alternate or mix both modes within the same interface.
1.1 Swiss Industrial Print
Derived from 1960s corporate identity systems and heavy machinery blueprints.
- Characteristics: High-contrast light modes (newsprint/off-white substrates). Reliance on monolithic, heavy sans-serif typography. Unforgiving structural grids outlined by visible dividing lines. Aggressive, asymmetric use of negative space punctuated by oversized, viewport-bleeding numerals or letterforms. Heavy use of primary red as an alert/accent color.
1.2 Tactical Telemetry & CRT Terminal
Derived from classified military databases, legacy mainframes, and aerospace Heads-Up Displays (HUDs).
- Characteristics: Dark mode exclusivity. High-density tabular data presentation. Absolute dominance of monospaced typography. Integration of technical framing devices (ASCII brackets, crosshairs). Application of simulated hardware limitations (phosphor glow, scanlines, low bit-depth rendering).
2. Typographic Architecture
Typography is the primary structural and decorative infrastructure. Imagery is secondary. The system demands extreme variance in scale, weight, and spacing.
2.1 Macro-Typography (Structural Headers)
- Classification: Neo-Grotesque / Heavy Sans-Serif.
- Optimal Web Fonts: Neue Haas Grotesk (Black), Inter (Extra Bold/Black), Archivo Black, Roboto Flex (Heavy), Monument Extended.
- Scale: Deployed at massive scales using fluid typography (e.g.,
clamp(4rem, 10vw, 15rem)).
- Tracking (Letter-spacing): Extremely tight, often negative (
-0.03em to -0.06em), forcing glyphs to form solid architectural blocks.
- Leading (Line-height): Highly compressed (
0.85 to 0.95).
- Casing: Exclusively uppercase for structural impact.
2.2 Micro-Typography (Data & Telemetry)
- Classification: Monospace / Technical Sans.
- Optimal Web Fonts: JetBrains Mono, IBM Plex Mono, Space Mono, VT323, Courier Prime.
- Scale: Fixed and small (
10px to 14px / 0.7rem to 0.875rem).
- Tracking: Generous (
0.05em to 0.1em) to simulate mechanical typewriter spacing or terminal matrices.
- Leading: Standard to tight (
1.2 to 1.4).
- Casing: Exclusively uppercase. Used for all metadata, navigation, unit IDs, and coordinates.
2.3 Textural Contrast (Artistic Disruption)
- Classification: High-Contrast Serif.
- Optimal Web Fonts: Playfair Display, EB Garamond, Times New Roman.
- Implementation Parameters: Used exceedingly sparingly. Must be subjected to heavy post-processing (halftone filters, 1-bit dithering) to degrade vector perfection and create textural juxtaposition against the clean sans-serifs.
3. Color System
The color architecture is uncompromising. Gradients, soft drop shadows, and modern translucency are strictly prohibited. Colors simulate physical media or primitive emissive displays.
CRITICAL: Choose ONE substrate palette per project and use it consistently. Never mix light and dark substrates within the same interface.
Swiss Industrial Print Light Substrate
- Background:
#F4F4F0 or #EAE8E3 (Matte, unbleached documentation paper).
- Foreground:
#050505 to #111111 (Carbon Ink).
- Accent:
#E61919 or #FF2A2A (Aviation/Hazard Red). This is the ONLY accent color. Used for strike-throughs, thick structural dividing lines, or vital data highlights.
Tactical Telemetry Dark Substrate
- Background:
#0A0A0A or #121212 (Deactivated CRT. Avoid pure #000000).
- Foreground:
#EAEAEA (White phosphor). This is the primary text color.
- Accent:
#E61919 or #FF2A2A (Aviation/Hazard Red). Same red, same rules.
- Terminal Green (
#4AF626): Optional. Use ONLY for a single specific UI element (e.g., one status indicator or one data readout) — never as a general text color. If it doesn't serve a clear purpose, omit it entirely.
4. Layout and Spatial Engineering
- The Blueprint Grid: Strict adherence to CSS Grid architectures. Elements do not float; they are anchored precisely to grid tracks and intersections.
- Visible Compartmentalization: Extensive utilization of solid borders (
1px or 2px solid) to delineate distinct zones of information. Horizontal rules (<hr>) frequently span the entire container width to segregate operational units.
- Bimodal Density: Layouts oscillate between extreme data density (tightly packed monospace metadata clustered together) and vast expanses of calculated negative space framing macro-typography.
- Geometry: Absolute rejection of
border-radius. All corners must be exactly 90 degrees to enforce mechanical rigidity.
5. UI Components and Symbology
- Syntax Decoration: Utilization of ASCII characters to frame data points (
[ DELIVERY SYSTEMS ], < RE-IND >, >>>, ///).
- Industrial Markers: Prominent integration of registration (
®), copyright (©), and trademark (™) symbols functioning as structural geometric elements rather than legal text.
- Technical Assets: Integration of crosshairs (
+) at grid intersections, repeating vertical lines (barcodes), thick horizontal warning stripes, and randomized string data (REV 2.6, UNIT / D-01) to simulate active mechanical processes.
6. Textural and Post-Processing Effects
- Halftone and 1-Bit Dithering: Dot-matrix effects via
mix-blend-mode: multiply overlays combined with SVG radial dot patterns.
- CRT Scanlines:
repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px) on terminal backgrounds.
- Mechanical Noise: Low-opacity SVG static filter on the DOM root to introduce physical grain.
7. Web Engineering Directives
- Grid Determinism: Utilize
display: grid; gap: 1px; with contrasting parent/child background colors to generate mathematically perfect, razor-thin dividing lines without complex border declarations.
- Semantic Rigidity: Construct the DOM using precise semantic tags (
<data>, <samp>, <kbd>, <output>, <dl>) to accurately reflect the technical nature of the telemetry.
- Typography Clamping: Implement CSS
clamp() functions exclusively for macro-typography to ensure massive text scales aggressively while maintaining structural integrity across viewports.
Code Examples
export function TelemetryModule({ unitId, status, metrics }: { unitId: string; status: string; metrics: { label: string; val: string }[] }) {
return (
<div className="border-2 border-black dark:border-white bg-[#F4F4F0] dark:bg-[#0A0A0A] font-mono p-4 rounded-none">
<div className="flex justify-between border-b border-black/30 dark:border-white/30 pb-2 mb-4 text-xs tracking-widest uppercase">
<span>[ UNIT // {unitId} ]</span>
<span className="text-[#E61919] font-bold">< STATUS: {status} ></span>
</div>
<div className="grid grid-cols-2 gap-px bg-black/20 dark:bg-white/20">
{metrics.map(m => (
<div key={m.label} className="bg-[#F4F4F0] dark:bg-[#0A0A0A] p-2">
<div className="text-[10px] text-black/60 dark:text-white/60 tracking-wider">{m.label}</div>
<div className="text-sm font-bold tracking-tight">{m.val}</div>
</div>
))}
</div>
</div>
);
}
Validation Checklist
Common Mistakes
- Mixing Swiss Industrial Print and Tactical Telemetry substrates within the same view.
- Introducing rounded corners (
rounded-md, rounded-full) or pill buttons.
- Using generic body typefaces without tracking adjustments.
- Applying subtle pastel colors instead of raw carbon ink, off-white, and hazard red.
Integration Notes
- Complements
impeccable-design for QA checks on contrast and typography.
- Pairs with
web-accessibility to guarantee high-contrast readability (AAA ratio).
1---2name: brutalist-design3description: Raw mechanical interfaces fusing Swiss typographic print with military terminal aesthetics.4---5# SKILL: Industrial Brutalism & Tactical Telemetry UI67## Overview89Advanced proficiency in architecting web interfaces that synthesize mid-century Swiss Typographic design, industrial manufacturing manuals, and retro-futuristic aerospace/military terminal interfaces. This discipline requires absolute mastery over rigid modular grids, extreme typographic scale contrast, purely utilitarian color palettes, and the programmatic simulation of analog degradation (halftones, CRT scanlines, bitmap dithering). The objective is to construct digital environments that project raw functionality, mechanical precision, and high data density, deliberately discarding conventional consumer UI patterns.1011## When to Use1213- When building data-heavy telemetry dashboards, analytics monitors, trading systems, or developer command centers.14- When creating editorial portfolios, archival indexes, or technical documentation sites requiring an industrial blueprint aesthetic.15- When explicitly prompted for "brutalist", "tactical", "terminal", "Swiss print", or "mechanical" aesthetics.1617## Rules & Patterns1819### 1. Visual Archetypes2021Pick ONE per project and commit to it. Do not alternate or mix both modes within the same interface.2223#### 1.1 Swiss Industrial Print2425Derived from 1960s corporate identity systems and heavy machinery blueprints.2627- **Characteristics:** High-contrast light modes (newsprint/off-white substrates). Reliance on monolithic, heavy sans-serif typography. Unforgiving structural grids outlined by visible dividing lines. Aggressive, asymmetric use of negative space punctuated by oversized, viewport-bleeding numerals or letterforms. Heavy use of primary red as an alert/accent color.2829#### 1.2 Tactical Telemetry & CRT Terminal3031Derived from classified military databases, legacy mainframes, and aerospace Heads-Up Displays (HUDs).3233- **Characteristics:** Dark mode exclusivity. High-density tabular data presentation. Absolute dominance of monospaced typography. Integration of technical framing devices (ASCII brackets, crosshairs). Application of simulated hardware limitations (phosphor glow, scanlines, low bit-depth rendering).3435### 2. Typographic Architecture3637Typography is the primary structural and decorative infrastructure. Imagery is secondary. The system demands extreme variance in scale, weight, and spacing.3839#### 2.1 Macro-Typography (Structural Headers)4041- **Classification:** Neo-Grotesque / Heavy Sans-Serif.42- **Optimal Web Fonts:** Neue Haas Grotesk (Black), Inter (Extra Bold/Black), Archivo Black, Roboto Flex (Heavy), Monument Extended.43- **Scale:** Deployed at massive scales using fluid typography (e.g., `clamp(4rem, 10vw, 15rem)`).44- **Tracking (Letter-spacing):** Extremely tight, often negative (`-0.03em` to `-0.06em`), forcing glyphs to form solid architectural blocks.45- **Leading (Line-height):** Highly compressed (`0.85` to `0.95`).46- **Casing:** Exclusively uppercase for structural impact.4748#### 2.2 Micro-Typography (Data & Telemetry)4950- **Classification:** Monospace / Technical Sans.51- **Optimal Web Fonts:** JetBrains Mono, IBM Plex Mono, Space Mono, VT323, Courier Prime.52- **Scale:** Fixed and small (`10px` to `14px` / `0.7rem` to `0.875rem`).53- **Tracking:** Generous (`0.05em` to `0.1em`) to simulate mechanical typewriter spacing or terminal matrices.54- **Leading:** Standard to tight (`1.2` to `1.4`).55- **Casing:** Exclusively uppercase. Used for all metadata, navigation, unit IDs, and coordinates.5657#### 2.3 Textural Contrast (Artistic Disruption)5859- **Classification:** High-Contrast Serif.60- **Optimal Web Fonts:** Playfair Display, EB Garamond, Times New Roman.61- **Implementation Parameters:** Used exceedingly sparingly. Must be subjected to heavy post-processing (halftone filters, 1-bit dithering) to degrade vector perfection and create textural juxtaposition against the clean sans-serifs.6263### 3. Color System6465The color architecture is uncompromising. Gradients, soft drop shadows, and modern translucency are strictly prohibited. Colors simulate physical media or primitive emissive displays.6667**CRITICAL: Choose ONE substrate palette per project and use it consistently. Never mix light and dark substrates within the same interface.**6869#### Swiss Industrial Print Light Substrate7071- **Background:** `#F4F4F0` or `#EAE8E3` (Matte, unbleached documentation paper).72- **Foreground:** `#050505` to `#111111` (Carbon Ink).73- **Accent:** `#E61919` or `#FF2A2A` (Aviation/Hazard Red). This is the ONLY accent color. Used for strike-throughs, thick structural dividing lines, or vital data highlights.7475#### Tactical Telemetry Dark Substrate7677- **Background:** `#0A0A0A` or `#121212` (Deactivated CRT. Avoid pure `#000000`).78- **Foreground:** `#EAEAEA` (White phosphor). This is the primary text color.79- **Accent:** `#E61919` or `#FF2A2A` (Aviation/Hazard Red). Same red, same rules.80- **Terminal Green (`#4AF626`):** Optional. Use ONLY for a single specific UI element (e.g., one status indicator or one data readout) — never as a general text color. If it doesn't serve a clear purpose, omit it entirely.8182### 4. Layout and Spatial Engineering8384- **The Blueprint Grid:** Strict adherence to CSS Grid architectures. Elements do not float; they are anchored precisely to grid tracks and intersections.85- **Visible Compartmentalization:** Extensive utilization of solid borders (`1px` or `2px solid`) to delineate distinct zones of information. Horizontal rules (`<hr>`) frequently span the entire container width to segregate operational units.86- **Bimodal Density:** Layouts oscillate between extreme data density (tightly packed monospace metadata clustered together) and vast expanses of calculated negative space framing macro-typography.87- **Geometry:** Absolute rejection of `border-radius`. All corners must be exactly 90 degrees to enforce mechanical rigidity.8889### 5. UI Components and Symbology9091- **Syntax Decoration:** Utilization of ASCII characters to frame data points (`[ DELIVERY SYSTEMS ]`, `< RE-IND >`, `>>>`, `///`).92- **Industrial Markers:** Prominent integration of registration (`®`), copyright (`©`), and trademark (`™`) symbols functioning as structural geometric elements rather than legal text.93- **Technical Assets:** Integration of crosshairs (`+`) at grid intersections, repeating vertical lines (barcodes), thick horizontal warning stripes, and randomized string data (`REV 2.6`, `UNIT / D-01`) to simulate active mechanical processes.9495### 6. Textural and Post-Processing Effects9697- **Halftone and 1-Bit Dithering:** Dot-matrix effects via `mix-blend-mode: multiply` overlays combined with SVG radial dot patterns.98- **CRT Scanlines:** `repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px)` on terminal backgrounds.99- **Mechanical Noise:** Low-opacity SVG static filter on the DOM root to introduce physical grain.100101### 7. Web Engineering Directives1021031. **Grid Determinism:** Utilize `display: grid; gap: 1px;` with contrasting parent/child background colors to generate mathematically perfect, razor-thin dividing lines without complex border declarations.1042. **Semantic Rigidity:** Construct the DOM using precise semantic tags (`<data>`, `<samp>`, `<kbd>`, `<output>`, `<dl>`) to accurately reflect the technical nature of the telemetry.1053. **Typography Clamping:** Implement CSS `clamp()` functions exclusively for macro-typography to ensure massive text scales aggressively while maintaining structural integrity across viewports.106107## Code Examples108109```tsx110export function TelemetryModule({ unitId, status, metrics }: { unitId: string; status: string; metrics: { label: string; val: string }[] }) {111 return (112 <div className="border-2 border-black dark:border-white bg-[#F4F4F0] dark:bg-[#0A0A0A] font-mono p-4 rounded-none">113 <div className="flex justify-between border-b border-black/30 dark:border-white/30 pb-2 mb-4 text-xs tracking-widest uppercase">114 <span>[ UNIT // {unitId} ]</span>115 <span className="text-[#E61919] font-bold">< STATUS: {status} ></span>116 </div>117 <div className="grid grid-cols-2 gap-px bg-black/20 dark:bg-white/20">118 {metrics.map(m => (119 <div key={m.label} className="bg-[#F4F4F0] dark:bg-[#0A0A0A] p-2">120 <div className="text-[10px] text-black/60 dark:text-white/60 tracking-wider">{m.label}</div>121 <div className="text-sm font-bold tracking-tight">{m.val}</div>122 </div>123 ))}124 </div>125 </div>126 );127}128```129130## Validation Checklist131132- [ ] Strict rejection of `border-radius` (all corners 0px / 90 degrees).133- [ ] Substrate consistency: 100% committed to either Swiss Light or Tactical CRT Dark.134- [ ] Pure black (`#000000`) avoided for backgrounds.135- [ ] Monospace typography used for all telemetry, coordinates, and metadata labels.136- [ ] Dividing lines engineered using solid borders or 1px grid track gaps.137- [ ] No soft gradients, standard drop shadows, or floating cards.138139## Common Mistakes140141- Mixing Swiss Industrial Print and Tactical Telemetry substrates within the same view.142- Introducing rounded corners (`rounded-md`, `rounded-full`) or pill buttons.143- Using generic body typefaces without tracking adjustments.144- Applying subtle pastel colors instead of raw carbon ink, off-white, and hazard red.145146## Integration Notes147148- Complements `impeccable-design` for QA checks on contrast and typography.149- Pairs with `web-accessibility` to guarantee high-contrast readability (AAA ratio).150