DevOS expresses its entire visual identity through six named color tokens. Rather than scattering raw hex values across components, every color decision in the codebase references one of these tokens via a Tailwind utility class. This page documents each token’s hex value, its generated CSS, and exactly where it appears in the OS interface.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/dev-os/llms.txt
Use this file to discover all available pages before exploring further.
Full Token Reference
| Token | Hex | Usage |
|---|---|---|
os-teal | #0F766E | Window title bars, taskbar gradient, borders, focus rings, icon tint |
os-cyan | #22D3EE | Active window icon, taskbar start button highlight, cursor hover |
os-cream | #F5F1E8 | Desktop background, window chrome, scrollbar track |
os-window | #FFFFFF | Window content area background |
os-dark | #111827 | Default text, body color |
os-accent | #14B8A6 | Terminal text color, boot screen text, animation accents |
Token Color Values in CSS
The compiled utility classes frommain.css confirm the exact RGB triples Tailwind resolves each token to:
Window Shadow System
DevOS defines two box-shadow classes for the windowing system, both usingos-teal as the shadow color tint:
33 → 66) when a window receives focus, creating a clear visual hierarchy between stacked windows.
Semantic Usage
Tailwind utility classes group into four semantic roles within DevOS: Primary interactiveTransparency Variants
Tailwind’s opacity modifier syntax (token/opacity) is used throughout the codebase for overlays, hover states, and tinted surfaces. All confirmed usages from main.css:
| Class | Resolved color | Where used |
|---|---|---|
bg-os-teal/20 | #0f766e33 | Selected desktop icon background |
bg-os-teal/80 | #0f766ecc | Semi-opaque taskbar overlays |
bg-os-cyan/30 | #22d3ee4d | Active indicator tint |
border-os-teal/30 | #0f766e4d | Subtle window border on hover |
border-os-cyan/30 | #22d3ee4d | Terminal input border |
text-os-teal/50 | #0f766e80 | Muted teal label text |
text-os-teal/80 | #0f766ecc | Secondary teal text |