Dev Nexus is built around a witch-tech aesthetic — a dark, arcane palette that pairs near-black voids and deep purples with electric accent colors. Every color in the UI traces back to one of seven CSS custom properties defined inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/dev-nexus/llms.txt
Use this file to discover all available pages before exploring further.
:root inside assets/main.css. Those tokens drive both raw CSS rules and the pre-compiled utility classes baked into the stylesheet.
Color Token Reference
| Token | CSS Variable | Hex | Usage |
|---|---|---|---|
| Void | --color-void | #050208 | Page/app background |
| Witch Purple | --color-witch-purple | #1b0833 | Panel and card backgrounds |
| Electric Violet | --color-electric-violet | #9d4dff | Primary accent, glows, borders |
| Neon Lime | --color-neon-lime | #9eff5b | Secondary accent, active states |
| Ghost Mint | --color-ghost-mint | #6dffc7 | Skills page accent |
| Hot Magenta | --color-hot-magenta | #ff4ad8 | Writing page accent |
| Moonlight | --color-moonlight | #f0eaff | Primary text color |
:root block of assets/main.css:
Utility Classes
Because Dev Nexus ships as a pre-compiled static site, all color-based utility classes are already present inassets/main.css. The full set of text, background, and border utilities for each token is included in the compiled stylesheet:
Changing a Color
Color tokens live inassets/main.css inside the :root block. Updating a hex value there propagates the change to every raw CSS rule and custom utility that references the variable:
.glow-violet) will need their hex values updated separately in the same file to stay in sync.
The Glass Panel Pattern
The.glass-panel utility class creates the frosted, semi-transparent card surface used throughout the UI. It combines a translucent witch-purple background with a faint electric-violet border and a backdrop blur:
Glow Utility Classes
Fourglow-* classes emit colored light via box-shadow. Each has a diffuse outer glow and a subtle inset glow to simulate a light source within the element:
Per-Page Accent Color Mapping
Each route in Dev Nexus is assigned a dedicated accent color that drives its glow classes, active borders, and highlight text:| Route | Accent Color | CSS Token | Glow Class |
|---|---|---|---|
Home (/) | Electric Violet | electric-violet | .glow-violet |
About (/about) | Neon Lime | neon-lime | .glow-lime |
Projects (/projects) | Per-card | mixed | mixed |
Skills (/skills) | Ghost Mint | ghost-mint | .glow-mint |
Writing (/writing) | Hot Magenta | hot-magenta | .glow-magenta |
Case Studies (/case-studies) | Electric Violet | electric-violet | .glow-violet |
Contact (/contact) | Neon Lime | neon-lime | .glow-lime |
VialCard carries its own accent determined by the project’s assigned color token, so a single projects grid can span all four accent hues simultaneously.