NeonRetro Sys_Admin’s visual identity is built on a tightly scoped design system: seven Y2K-era color tokens wired into Tailwind’s utility pipeline, three distinct typefaces for display, terminal, and body text, a family of flat offset-shadow utilities that create the illusion of depth without blur, and a small set of hand-authored CSS animations that bring the CRT scanline, rainbow gradient text, and marquee ticker to life. Everything is defined once inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/neon-retro-sys-admin/llms.txt
Use this file to discover all available pages before exploring further.
assets/main.css and applied uniformly across all components using Tailwind class names.
Color tokens
Seven custom colors extend Tailwind’s default palette. They cover the full range of Y2K aesthetics — near-black backgrounds, neon accent colors, and a blueviolet purple for secondary highlights. Every color is available as abg-*, text-*, border-*, and opacity-modified variant throughout the codebase.
| Token | CSS Class Prefix | Hex Value | Usage |
|---|---|---|---|
y2k-black | bg-y2k-black / text-y2k-black / border-y2k-black | #050505 | Page background; RetroWindow interiors |
y2k-gray | bg-y2k-gray / border-y2k-gray | #1a1a1a | Secondary backgrounds; divider lines; skill bar tracks |
y2k-lightgray | bg-y2k-lightgray | #2a2a2a | Tertiary surface tints (used at /20 and /30 opacity) |
y2k-cyan | text-y2k-cyan / border-y2k-cyan | #00ffff | Primary accent; RetroWindow cyan variant; nav active states |
y2k-magenta | text-y2k-magenta / border-y2k-magenta | #ff00ff | Secondary accent; tag highlights; selection background |
y2k-lime | text-y2k-lime / bg-y2k-lime | #39ff14 | CTA buttons; skill bar fill; marquee text |
y2k-purple | text-y2k-purple / border-y2k-purple | #8a2be2 | Tertiary accent; system_status.log window; case study sidebar |
Typography
Three Google Fonts families are loaded at the top ofassets/main.css via a single @import from fonts.googleapis.com. Each is mapped to a Tailwind utility class for consistent application:
Silkscreen → .font-display
Used for headings, page titles, button labels, and all display text. Silkscreen is a bitmap-style font that reads as if it were rendered on a low-resolution screen — perfect for section headers like ABOUT_ME.txt and CHARACTER_STATS.dat. Applied via the font-display class, which maps to font-family: Silkscreen, cursive.
VT323 → .font-mono
Used for terminal output, metadata, skill bar labels, guestbook names, and any text that should feel like it came out of a command-line interface. VT323 replicates the look of a classic dot-matrix terminal font. Applied via the font-mono class, which maps to font-family: VT323, monospace. It is also the default font for code, kbd, samp, and pre elements in the Tailwind base reset.
Inter → .font-sans
Used for body prose, article excerpts, project descriptions, and any longer-form text that needs legibility over personality. Inter is the neutral baseline that prevents the design from becoming unreadable. Applied via the font-sans class, which maps to font-family: Inter, sans-serif, and is also the default body font.
h1–h6) have font-family: Silkscreen, cursive and letter-spacing: 0.05em applied globally in the base layer, so structural headings automatically render in the display font without an explicit class.
Shadow utilities
The retro aesthetic relies on hard offset box shadows — no blur radius, no spread, just a solid 4×4 pixel offset that creates the effect of a raised surface casting a flat shadow. Six named utilities cover all the Y2K accent colors plus white and a dark gray for neutral contexts:| Utility Class | Box Shadow Value | Used on |
|---|---|---|
.shadow-retro-cyan | 4px 4px 0px 0px #00ffff | Cyan RetroWindow chrome; case study panel |
.shadow-retro-magenta | 4px 4px 0px 0px #ff00ff | Magenta RetroWindow chrome |
.shadow-retro-lime | 4px 4px 0px 0px #39ff14 | Lime RetroWindow chrome; CTA buttons |
.shadow-retro-purple | 4px 4px 0px 0px #8a2be2 | Purple RetroWindow chrome |
.shadow-retro-white | 4px 4px 0px 0px #ffffff | White RetroWindow chrome |
.shadow-retro-gray | 4px 4px 0px 0px #333333 | Sticky note / neutral surface elements |
hover:shadow-none + hover:translate-y-1 combination on interactive elements (e.g. the ENTER_SYSTEM button on the home page) to simulate a press — the shadow disappears and the element shifts 1px downward on hover.
CSS animation utilities
.rainbow-text
Applies an animated linear gradient to text using background-clip: text and color: transparent. The gradient cycles through magenta → cyan → lime → purple → magenta over a 3-second loop using a 200% background-size and the rainbow keyframe animation:
"I BUILD THINGS." headline on the home page.
.scanline
A position: absolute overlay that simulates a CRT monitor’s refresh scanline. A 100-pixel-tall translucent white band — defined as a linear-gradient(0deg, transparent, #ffffff1a, transparent) — travels from the top to the bottom of the viewport over a 10-second loop using the scanline keyframe:
pointer-events: none declaration ensures the overlay never intercepts mouse events on interactive elements below it.
.animate-marquee
Drives the horizontal scrolling ticker in Marquee.js. The marquee keyframe translates the content element from 100% (off-screen right) to -100% (off-screen left) over 25 seconds at a constant linear pace. The marquee text is repeated four times in the DOM so there is always visible content during the scroll:
hover:[animation-play-state:paused], an arbitrary Tailwind variant that pauses the animation when the user hovers over the ticker — useful for actually reading the scrolling text.
Background treatment
Thebody element uses two stacked background images to create the signature dark CRT environment:
radial-gradient creates a subtle vignette — slightly lighter in the center (#141414) fading to near-black at the edges (#050505). The repeating-linear-gradient layers a very faint (0.03 opacity) cyan horizontal line pattern every 4px, mimicking the horizontal scan lines of a CRT phosphor screen. Both layers are fixed to the viewport so they do not scroll with the page content.
The scrollbar is also fully styled: a #050505 track with a 1px solid #333 left border, a #1a1a1a thumb with a 1px solid #ff00ff (magenta) border, and a full magenta fill on :hover.