Dev Arcade’s visual identity is built on six custom Tailwind color tokens that span the full dark-neon spectrum — from a near-black site background to electric purples, hot magentas, and a signature lime-neon green. Every component in the app references these tokens by name, which means the entire color scheme can be replaced by editing a single object inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/dev-arcade/llms.txt
Use this file to discover all available pages before exploring further.
tailwind.config.js.
Color Palette Reference
| Token | Hex | Usage |
|---|---|---|
arcade | #07060d | Site background, text-on-light surfaces |
purple-deep | #1a0b2e | Card backgrounds, skill container borders |
purple-electric | #b14cff | Skill labels, tech stack text, scrollbar thumb |
magenta-hot | #ff3df0 | Type badges, loading bar, hover accents, scrollbar hover |
lime-neon | #b6ff3c | Headlines, CTA buttons, skill nodes, glow effects |
text-offwhite | #f4f1ff | Body text, readable off-white on dark backgrounds |
Tailwind Configuration
These tokens live in thetheme.extend.colors object inside tailwind.config.js. Tailwind generates every bg-*, text-*, border-*, and ring-* utility for each token automatically.
tailwind.config.js
Swapping the Palette
To replace the arcade palette with your own brand colors, change the hex values intailwind.config.js and rebuild. Because all components reference token names — text-lime-neon, bg-purple-deep, border-magenta-hot — no component files need to be touched.
tailwind.config.js
Scrollbar Styling
Dev Arcade styles the browser scrollbar to match the neon palette. This CSS lives in the global stylesheet (main.css / index.css) and uses hardcoded hex values rather than Tailwind utilities, because browser scrollbar pseudo-elements are not supported by Tailwind’s utility pipeline.
Related
Tailwind Config
See the full Tailwind configuration including fonts, keyframes, and animations.
Fonts
Learn about the three pixel typefaces and how to swap them out.