Aurora Cosmos defines its entire color system through a set of named tokens that were registered in Tailwind CSS at build time. Because the repo you received is the compiled static output, the token values now live as inline hex strings throughoutDocumentation 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. Changing a color means finding and replacing the relevant hex value in that file — no build step, no config files, just a text editor.
Current palette
The seven tokens below cover every chromatic surface in the template. The space tokens define the deep-dark background system, while the aurora and cosmic tokens supply the luminous accent colors used for glows, gradients, and interactive states.| Token | Value | Primary Use |
|---|---|---|
aurora-turquoise | #5eead4 | Active nav, focus rings, primary CTAs |
aurora-teal | #14b8a6 | Borders, scrollbar thumb, secondary accents |
aurora-green | #34d399 | Aurora layer 3 gradient, success badges |
cosmic-violet | #8b5cf6 | Star layer 3 glow, aurora layer 2 gradient |
cosmic-magenta | #ec4899 | Hover borders, aurora layer 2 from stop |
space-900 | #020617 | Page background, scrollbar track |
space-800 | #060b1f | Card and panel backgrounds |
Editing color values
All color values are compiled as hex strings insideassets/main.css. Open the file in any text editor, then find and replace the hex you want to change. For example, to swap the primary accent from aurora-turquoise to an electric blue:
rgb(R G B) form, you will need to replace both formats for each token. Use your editor’s “Replace All” function with the hex value (e.g. #5eead4) to catch the shorthand occurrences, then search for the RGB triplet (94 234 212) to catch the rgb() form.
Changing the primary accent color
The primary accent (aurora-turquoise, #5eead4) appears in active navigation indicators, focus rings, CTA button text, the .text-glow hover effect, and the scrollbar hover state. Replacing it is a two-step process.
Replace the hex in assets/main.css
Open
assets/main.css and run a global find-and-replace for all occurrences of #5eead4 and the RGB triplet 94 234 212. Replace both with the values for your new brand color.Updating CSS custom utilities
Two custom utility classes inassets/main.css contain values derived from the color system. If you change the background (space-800) or accent (aurora-teal) tokens, sync them here as well.