Dev Arcade extends Tailwind CSS in three meaningful ways: a six-token neon color palette that defines every surface and accent in the UI, a trio of pixel and monospace font families mapped to short utility classes, and two custom keyframe animations — a drifting star field and a horizontal marquee — that power the app’s ambient motion. All of these extensions live 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 under theme.extend, so they stack on top of Tailwind’s defaults without replacing them.
Full Configuration
The completetailwind.config.js, reconstructed from the compiled CSS output:
tailwind.config.js
Configuration Sections
content — Purge Paths
tailwind.config.js
./scripts/**/*.ts), add them here to prevent those classes from being stripped.
colors — Neon Palette
tailwind.config.js
bg-arcade, text-arcade, border-arcade, ring-arcade, and so on. Because these are defined under extend, they sit alongside Tailwind’s built-in palette (grays, blues, etc.) rather than replacing it. See the Colors page for the full palette reference and swap instructions.
fontFamily — Pixel Typefaces
tailwind.config.js
font-arcade, font-pixel, and font-mono utility classes. The fonts themselves are loaded from Google Fonts via an @import in the global CSS file — the config only maps the class names to font-family stacks. See the Fonts page for loading details and swap instructions.
keyframes & animation — Ambient Motion
tailwind.config.js
animate-stars— Scrolls a radial-gradient star field downward over 100 seconds in a seamless infinite loop, used on the.starfieldbackground layer.animate-marquee— Slides an element from fully off-screen right to fully off-screen left over 20 seconds, used for scrolling ticker text.
animation so they can be applied as single utility classes (animate-stars, animate-marquee) anywhere in JSX.
Text Selection Utilities
Dev Arcade also applies Tailwind’sselection variant utilities directly on the body element to style highlighted text:
magenta-hot background and white foreground — consistent with the neon accent palette — rather than the browser’s default blue selection color. No config changes are needed; selection:* is a built-in Tailwind variant.
The compiled
assets/main.css contains all Tailwind utility classes and custom CSS bundled together. If you are running Dev Arcade from source (not the pre-compiled output), you will have a tailwind.config.js and a postcss.config.js in the project root — those are the files to edit. Changes to tailwind.config.js take effect on the next build (npm run build) or automatically in the dev server (npm run dev).Related
Colors
Deep-dive into the six neon color tokens and how to swap the arcade palette.
Fonts
Learn about the three pixel typefaces and how to replace them.