Digital Alchemy has a dark mystical aesthetic built around deep blacks, warm parchment tones, and glowing turquoise accents. The visual language evokes candlelight, ancient manuscripts, and arcane ritual — executed through a Tailwind CSS design token system and two carefully chosen typefaces.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/digital-alchemy/llms.txt
Use this file to discover all available pages before exploring further.
Color palette
All six colors are compiled as custom Tailwind tokens intoassets/main.css and used throughout the codebase via utility classes like text-turquoise, bg-midnight, and border-teal.
| Token | Hex | Usage |
|---|---|---|
ink | #050505 | Page background, darkest surfaces, scrollbar track |
parchment | #E8E0CE | Primary body text, headings, light-surface text |
turquoise | #40E0D0 | Primary accent — glows, active borders, interactive hover states, scrollbar thumb hover, text selection highlight |
midnight | #0F0C29 | Card backgrounds, modal overlays, panel backgrounds |
amber | #FFBF00 | Candle flame glow, warm decorative accents |
teal | #008080 | Secondary borders, crystal ball accents, scrollbar thumb base |
Color in context
Typography
Two Google Fonts are loaded globally via@import in assets/main.css:
| Role | Font | Weights | Notes |
|---|---|---|---|
Headings (h1–h6) | Cormorant Garamond (serif) | 400, 500, 600, 700 + italic | letter-spacing: 0.025em applied globally via Tailwind config |
| Body / UI | Inter (sans-serif) | 300, 400, 500 | Default font on <html> and <body> |
Custom utility classes
Three custom utility classes are defined inassets/main.css and used throughout the component library:
.text-glow
Applies a turquoise drop-shadow text glow effect:Used on headings, logo text, and accent labels.
.small-caps
Renders text in small-capitals:Used on nav labels, section subtitles, and footer text.
.hide-cursor
Hides the default cursor on all child elements:Applied to
<body> so the custom CursorWisp component replaces the OS cursor site-wide.Spacing and layout conventions
The fixed header and footer create occupied zones at the top and bottom of the viewport. All page-level containers account for these zones with consistent padding:| Convention | Tailwind class | Value | Purpose |
|---|---|---|---|
| Top padding | pt-32 | 8rem | Clears the fixed header |
| Bottom padding | pb-24 | 6rem | Clears the fixed footer |
| Narrow content | max-w-5xl mx-auto | 64rem wide | Article / detail pages |
| Wide content | max-w-6xl mx-auto | 72rem wide` | Grid / gallery pages |
| Horizontal gutter | px-6 | 1.5rem | Standard page padding |