Mystery Haunting’s entire visual identity — from the teal ghost glow to the bone-white body text — is driven by Tailwind CSS. All color tokens, font families, and custom utilities are defined inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/mystery-haunting/llms.txt
Use this file to discover all available pages before exploring further.
tailwind.config.js at the root of the source repository, giving you a single place to retheme the site without touching individual components.
Color Palette
The project defines four semantic color tokens that are used throughout every page. Replace any of them intailwind.config.js to cascade your change across the entire site.
| Token | Default Value | How to Change |
|---|---|---|
ghost-teal | #2dd4bf | Replace in tailwind.config extend.colors |
pumpkin | #f97316 | Replace in tailwind.config extend.colors |
spooky-black | #0a0a0a | Replace in tailwind.config extend.colors |
bone | #f5f5f4 | Replace in tailwind.config extend.colors |
Typography
Two custom font families are registered in the Tailwind config and used across the site:font-spooky— A decorative serif used for all major headings and page titles. Swap this for any display or gothic typeface that fits your brand.font-mono— A monospace font used for labels, metadata, and navigation items.
Glow Effects
Mystery Haunting uses Tailwind’s arbitrary value syntax to apply neon glow effects without defining custom utilities for every variation:shadow-[0_0_100px_#2dd4bf]— A wide box-shadow bloom used on key UI panels and containers.drop-shadow-[0_0_15px_#2dd4bf]— A tighter drop-shadow applied to SVG icons and floating elements.
text-glow-teal class is a custom Tailwind plugin class that applies a CSS text-shadow — a property Tailwind does not support natively. It is defined inside the plugins array in tailwind.config.js. To change the glow color, locate the plugin entry and update the text-shadow value to match your new primary color.
Rebuilding After Changes
After editingtailwind.config.js, run the build command to recompile the stylesheet: