Aurora Cosmos ships as a pre-built static site with a hand-tuned set of color tokens, custom utility classes, and three carefully chosen typefaces compiled intoDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/aurora-cosmos/llms.txt
Use this file to discover all available pages before exploring further.
assets/main.css. Every visual decision — from the deep-space background to the glowing nav indicator — traces back to this design system, making it straightforward to restyle or extend the template by editing the compiled stylesheet directly.
Color Palette
The palette is divided into two families: aurora tones that evoke the natural light phenomena of polar skies, and cosmic tones drawn from nebula and deep-space photography. Together they overlay a near-black space background scale.| Token | Hex | Primary use cases |
|---|---|---|
aurora-turquoise | #5eead4 | Primary accent, active nav indicator, focus rings, text glow |
aurora-teal | #14b8a6 | Secondary accent, borders, scrollbar thumb, .box-glow shadow |
aurora-green | #34d399 | Success states, aurora background layer 3 gradient |
cosmic-violet | #8b5cf6 | Star layer 3 glow, aurora background layer 2 gradient |
cosmic-magenta | #ec4899 | Secondary cosmic accent, hover border highlights |
space-900 | #020617 | Page background, deepest surface |
space-800 | #060b1f | Card and panel backgrounds, .glass-panel fill |
Aurora Cosmos is a pre-built static site — there is no
tailwind.config.js or src/ directory in the repository. Color tokens are already compiled into assets/main.css as CSS custom properties and Tailwind utility classes. To restyle or add tokens, edit assets/main.css directly (or rebuild from your own source if you have it). The class names shown in examples (bg-aurora-turquoise, text-cosmic-violet, etc.) are available because they are present in the compiled stylesheet.Using Tokens in JSX
Custom Utilities
Three component-level utility classes are compiled intoassets/main.css. Apply them directly in your JSX className props alongside any other CSS classes — they are ready to use without any build step.
.glass-panel
Frosted-glass surface used on the navigation sidebar, project cards, and modal panels. Combines a hairline white border, translucent
space-800 background, and backdrop-blur-md for the blur effect..box-glow
A soft outward glow in
aurora-teal at 20% opacity. Applied to cards and containers to simulate ambient light emanating from the aurora layers behind them..text-glow (hover)
A
text-shadow in aurora-turquoise at 50% opacity applied via the group-hover:text-glow variant. Used on navigation labels when the parent link is hovered.Example usage in JSX
Typography
Aurora Cosmos loads three typefaces from Google Fonts and maps each to a distinct Tailwind utility class.Space Grotesk
Class:
font-displayApplied automatically to all h1–h6 elements via base styles. Use font-display explicitly on UI labels, stat numbers, and nav brand text. Tracking is tightened to tracking-tight (letter-spacing: -0.025em) by default on headings.Plus Jakarta Sans
Class:
font-sans (default)The body typeface set on <html>. No class needed for running text — it is the default. Use it explicitly when overriding a font-display or font-mono context back to body copy.JetBrains Mono
Class:
font-monoApplied automatically to <code> and <pre> elements. Use font-mono on skill badges, terminal-style labels, version strings, or any element that should read as a system/machine output.