Fandango Pink
HEX: #DE5285 | Modern Palette
Color Specifications
#DE5285
222, 82, 133
338°, 63% ,87%
0, 63.06, 40.09, 12.94
About Fandango Pink
Fandango Pink (#DE5285) is a color with RGB(222, 82, 133) and HSL(338.14°, 63.06%, 87.06%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #52DEAB, which creates strong contrast. Its triadic palette includes #85DE52 and #5285DE. The name comes from Fandango (Spanish (via English adoption)).
- HEX: #DE5285
- RGB: 222, 82, 133
- HSL: 338.14°, 63.06%, 87.06%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #52DEAB
- Triadic colors: #85DE52, #5285DE
- The name comes from Fandango (Spanish (via English adoption)).
Live Components
Color Palettes
Fandango Pink #DE5285 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Fandango Pink #DE5285 pairs with #52DEAB as its complementary color, and #85DE52 and #5285DE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#8E8E81
#6E6E86
#DB5A5A
#848484
Frequently Asked Questions
Name, History & Etymology
History
The term 'fandango' entered English from Spanish in the mid-18th century, referring to the dance. Its association with a color, 'Fandango Pink,' is metaphorical, likely evoking the vibrancy, passion, or perhaps the costumes associated with the dance. The specific shade #de5285 is a deep, somewhat muted fuchsia or magenta, which could be seen as lively and expressive, fitting the dance's character. The 'pink' addition simply categorizes it within the pink spectrum.
First Recorded Use
The word 'fandango' itself dates back to the 18th century in English. 'Fandango Pink' as a specific color name, particularly with a hex code like #de5285, is a modern invention, likely emerging in the latter half of the 20th century or early 21st century with the rise of digital color systems and expanded color palettes for design and fashion. It's not a historically recognized 'named color' from centuries past.
Cultural Associations
The name 'Fandango Pink' evokes a sense of festivity, passion, and exoticism due to its Spanish dance origin. It suggests a vibrant, energetic, and perhaps romantic hue. In modern culture, such a color might be used in fashion, interior design, or branding to convey excitement, creativity, or a touch of dramatic flair. It's less a 'sweet' pink and more a 'bold' pink.
Code Snippets
/* Background */
.element {
background-color: #DE5285;
}
/* Text */
.element {
color: #DE5285;
}
/* Border */
.element {
border: 1px solid #DE5285;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DE5285,
#C9F3E4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DE5285,
#C9F3E4
);
}
// SCSS variable
$fandango-pink: #DE5285;
// With RGB channels (useful for rgba() usage)
$fandango-pink-r: 222;
$fandango-pink-g: 82;
$fandango-pink-b: 133;
// Usage
.element {
background-color: $fandango-pink;
color: rgba($fandango-pink-r, $fandango-pink-g, $fandango-pink-b, 0.8);
}