| name | pantone-finder |
| description | Find, look up, and recommend Pantone colors with full color code conversions (HEX, RGB, CMYK, HSL, HSB). Use whenever the user asks about Pantone colors, needs color codes for a Pantone shade, describes a mood/vibe wanting color recommendations, asks about Pantone Color of the Year, or wants to generate a color theme from Pantone colors. Trigger on: "pantone", "color palette", "color of the year", "color recommendation", "what color matches", "color for branding", or mood descriptions expecting color suggestions (e.g. "warm autumn feel", "calm blue", "bold and energetic").
|
Pantone Finder
A comprehensive Pantone color discovery, lookup, and theme generation skill.
Capabilities
1. Color Lookup (ํฌํค ์ปฌ๋ฌ ์ฝ๋ ์กฐํ)
When the user provides a Pantone color name or number, return all available color codes:
| Format | Example |
|---|
| Pantone Code | PANTONE 15-4020 TCX |
| HEX | #9BB7D4 |
| RGB | rgb(155, 183, 212) |
| RGBA | rgba(155, 183, 212, 1.0) |
| HSL | hsl(211, 39%, 72%) |
| HSB/HSV | hsb(211, 27%, 83%) |
| CMYK | cmyk(27%, 14%, 0%, 17%) |
Steps:
- Read
references/pantone-coty.md for Color of the Year entries (2000โ2026)
- Read
references/pantone-popular-catalog.md for the extended catalog (150+ popular colors)
- If the color is found, output all code formats in a clean card or table
- If the color is NOT in the catalog, attempt to provide the closest known match and note it
Color Code Conversion Formula Reference:
- RGB โ HEX: Convert each R, G, B channel (0โ255) to two-digit hex
- RGB โ HSL: Standard conversion (hue 0โ360ยฐ, saturation/lightness 0โ100%)
- RGB โ CMYK: C=(1-R/255-K)/(1-K), M=(1-G/255-K)/(1-K), Y=(1-B/255-K)/(1-K), K=1-max(R,G,B)/255
- Always round values to whole numbers for readability
2. Mood-Based Recommendation (์์ฐ์ด ์ปฌ๋ฌ ์ถ์ฒ)
When the user describes a mood, atmosphere, season, emotion, or aesthetic in natural language:
Steps:
- Parse the mood keywords (e.g., "warm", "calm", "energetic", "vintage", "autumn")
- Map to color families using the mood-color mapping below
- Read the catalog references and select 3โ5 matching Pantone colors
- Present each with: name, Pantone code, HEX, RGB, and a brief reason for the recommendation
- If the user wants, generate a swatch visualization (HTML/SVG inline) showing the recommended colors
Mood โ Color Family Mapping:
| Mood / Keyword | Color Families |
|---|
| Warm, cozy, autumn, harvest | Amber, Coral, Marsala, Terracotta, Warm Brown |
| Cool, calm, serene, ocean, winter | Blue, Teal, Cerulean, Ice Blue, Slate |
| Energetic, bold, vibrant, passionate | Red, Magenta, Tangerine, Coral, Electric |
| Natural, earthy, organic, forest | Green, Olive, Sage, Moss, Emerald |
| Soft, gentle, pastel, romantic | Rose Quartz, Peach, Lavender, Serenity, Powder |
| Luxurious, elegant, royal, dramatic | Ultra Violet, Deep Navy, Marsala, Gold, Burgundy |
| Modern, minimal, clean, tech | Gray, Classic Blue, White, Black, Silver |
| Vintage, retro, nostalgic | Dusty Rose, Sage, Mustard, Terracotta, Cream |
| Tropical, summer, playful | Turquoise, Living Coral, Mimosa, Honeysuckle, Teal |
| Fresh, spring, renewal | Greenery, Aqua Sky, Peach Fuzz, Mimosa, Rose |
3. Theme Generation (ํฌํค ๊ธฐ๋ฐ ์ปฌ๋ฌ ํ
๋ง ์์ฑ)
When the user wants a full color theme based on a Pantone color:
Steps:
- Take the selected Pantone color as the primary/anchor color
- Generate a complete theme with these roles:
- Primary: The anchor Pantone color
- Secondary: A complementary or analogous Pantone color
- Accent: A contrasting Pantone color for highlights
- Background: A light/neutral Pantone shade
- Text: A dark shade for readability
- Select font pairings appropriate to the theme mood
- Output in theme-factory compatible format (see
references/theme-generation-guide.md)
- Optionally generate a visual preview swatch
Font Pairing Recommendations by Mood:
| Theme Mood | Header Font | Body Font |
|---|
| Professional / Corporate | DejaVu Sans Bold | DejaVu Sans |
| Elegant / Luxury | DejaVu Serif Bold | DejaVu Serif |
| Modern / Tech | DejaVu Sans Bold | DejaVu Sans Light |
| Creative / Playful | DejaVu Sans Bold | DejaVu Sans |
| Natural / Organic | DejaVu Serif Bold | DejaVu Sans |
Output Format
For Color Lookup โ Present as a compact card:
๐จ PANTONE 15-4020 TCX โ Cerulean
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
HEX #9BB7D4
RGB rgb(155, 183, 212)
RGBA rgba(155, 183, 212, 1.0)
HSL hsl(211, 39%, 72%)
HSB hsb(211, 27%, 83%)
CMYK cmyk(27%, 14%, 0%, 17%)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ท๏ธ Color of the Year 2000
For Mood Recommendation โ Present 3โ5 colors with brief reasoning
For Theme Generation โ Output as a markdown theme file:
# [Theme Name]
[Description]
## Color Palette
- **Primary**: `#HEX` โ [Pantone Name] (PANTONE XX-XXXX)
- **Secondary**: `#HEX` โ [Pantone Name]
- **Accent**: `#HEX` โ [Pantone Name]
- **Background**: `#HEX` โ [Pantone Name or neutral]
- **Text**: `#HEX` โ [Dark shade]
## Typography
- **Headers**: [Font]
- **Body Text**: [Font]
## Best Used For
[Suggested applications]
Visualization
When presenting colors, prefer generating an inline HTML/SVG swatch visualization showing the actual colors. This makes the output significantly more useful than plain text codes alone. Use the Visualizer tool if available, or create a simple HTML artifact with color blocks.
Important Notes
- Pantone colors are proprietary. The HEX/RGB values in this skill are approximate digital representations (TCX cotton equivalents). For production-critical color matching, always reference official Pantone physical swatches.
- CMYK values are derived approximations โ actual print CMYK may differ based on the Pantone formula guide.
- When generating themes, ensure sufficient contrast ratio (WCAG AA minimum) between text and background colors.