Color Melt is built on a contrast-first, liquid-color philosophy. Every color in the palette earns its place by serving the design — not just adding visual noise. The two base tones, Cream and Ink, anchor every page with a warm off-white background and a near-black body text that remains comfortable to read at any size. The nine dye accent colors surround them like tie-dye bleeding into fabric: vivid, saturated, and deliberately chosen to cycle through a full rainbow when animated. The result is a palette that feels energetic and handcrafted while still keeping hierarchy, contrast, and legibility intact across all nine portfolio pages.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/color-melt/llms.txt
Use this file to discover all available pages before exploring further.
Color Reference Table
All 11 colors are defined inassets/main.css as Tailwind-style utility classes. Use the hex codes below for any custom overrides, design assets, or contrast checks.
| Color Name | Hex Code | Primary Usage |
|---|---|---|
| Cream | #FDFBF7 | Page backgrounds, text on dark surfaces |
| Ink | #1A1A24 | Body text, borders, dark overlays |
| Dye Yellow | #FFCA3A | Borders, backgrounds, animated text gradients, form focus |
| Dye Blue | #1982C4 | Borders, backgrounds, drop-cap letters, animated gradients |
| Dye Red | #FF595E | Borders, backgrounds, text, animated gradient start |
| Dye Green | #8AC926 | Backgrounds, animated text gradients |
| Dye Pink | #FF99C8 | Backgrounds, text, form focus states |
| Dye Orange | #FF924C | Backgrounds |
| Dye Purple | #6A4C93 | Backgrounds, gradient layers, animated text gradients |
| Turquoise | #40E0D0 | Backgrounds, text selection highlight, gradient endpoints |
| Teal | #008080 | Backgrounds, text |
Using Colors in CSS
Color Melt’s stylesheet (assets/main.css) ships with Tailwind-style utility classes for every palette color. Reference them directly in your HTML without writing additional CSS.
Background classes:
bg-dye-{name} for backgrounds and text-dye-{name} for text — so adding a colored element is as straightforward as applying the class directly in markup. Opacity variants such as bg-ink/80 and bg-dye-yellow/20 are also available for overlays and tinted surfaces.
Tie-Dye Animated Text
The.tie-dye-text class is the signature animation of the Color Melt theme. It applies a shifting gradient that cycles through the full dye rainbow — red → yellow → green → blue → purple — using a background-clip technique that paints the gradient through the letterforms themselves.
The animation is defined in assets/main.css and runs on a five-second infinite loop:
Customizing Colors
The README recommends making targeted edits inassets/main.css rather than rewriting the stylesheet wholesale. Each color is defined once per utility class, so changing a single hex value updates every element that uses that class across all nine pages.
When substituting a color:
- Open
assets/main.cssand search for the hex code you want to replace. - Update the value in the relevant utility class definition.
- Check every page where that class appears to confirm the new color looks intentional in context.
- Run a contrast check against all surfaces the color touches — especially text-on-background and text-on-card combinations.