The developer.exe color system draws from the visual language of 1980s arcade cabinets and synthwave aesthetics: near-black backgrounds that push neon hues to maximum contrast, and a small set of vivid accent colors that each carry a distinct semantic role. Every color in the palette is registered as a Tailwind custom token so it can be applied directly in JSX classNames, and the three most-used accents are also exposed as CSS custom properties for use in keyframe animations and pseudo-element styles where Tailwind utilities cannot reach.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/developer-exe/llms.txt
Use this file to discover all available pages before exploring further.
Color Reference
| Token | Hex | Tailwind Classes | CSS Variable | Usage |
|---|---|---|---|---|
| Arcade Black | #06070d | bg-arcade-black, text-arcade-black | — | Page background, code blocks |
| Arcade Navy | #0c1024 | bg-arcade-navy, border-arcade-navy | — | Card backgrounds, secondary surfaces |
| Neon Magenta | #ff2bd6 | bg-neon-magenta, text-neon-magenta, border-neon-magenta | --hot-magenta | Primary CTA, scrollbar, glitch effect |
| Electric Cyan | #22d3ee | bg-neon-cyan, text-neon-cyan, border-neon-cyan | --electric-cyan | Secondary accent, links, borders |
| Neon Green | #39ff14 | bg-neon-green, text-neon-green, border-neon-green | --neon-green | HUD text, terminal style, success states |
| Neon Yellow | #fde047 | bg-neon-yellow, text-neon-yellow, border-neon-yellow | — | Warnings, highlight, score display |
CSS Custom Properties
The three primary accent colors are declared on:root so they are accessible anywhere in the stylesheet — including keyframe text-shadow values and pseudo-element content that cannot use Tailwind utility classes directly.
Pixel Border Utility
Rather than using a real CSSborder property (which would shift an element’s box-model dimensions), developer.exe implements pixel-art–style borders using box-shadow offsets. This keeps the element’s layout footprint stable while producing a crisp, blocky outline that matches the arcade aesthetic.
currentColor, so the pixel border automatically inherits whatever color is set on the element via a text-color class. Pair them with any neon token to choose the border color:
margin: 4px (or 2px for pixel-border-sm) offsets the element from its neighbours to prevent the shadow from being clipped by an overflow: hidden parent.
Selection Highlight
The site overrides the browser’s default::selection highlight to use --hot-magenta as the background and white as the selected text color, keeping the visual identity consistent even when a user drags to select text:
selection:bg-neon-magenta selection:text-white — for scoped application within a component tree.
Custom Cursor
Thebody element replaces the system cursor with a neon-green crosshair SVG encoded inline as a data: URI, reinforcing the HUD/terminal aesthetic across the entire viewport:
12 12 (the centre of the 24 × 24 SVG) so the crosshair intersection lands exactly on the click point. crosshair is provided as the fallback cursor type for browsers that do not support custom SVG cursors.