Fandango
HEX: #B53389 | Modern Palette
Color Specifications
#B53389
181, 51, 137
320°, 56% ,45%
0, 72, 24, 29
About Fandango
Fandango (#B53389) is a color with RGB(181, 51, 137) and HSL(320.3°, 56%, 45.5%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #33B55F, which creates strong contrast. Its triadic palette includes #89B533 and #3389B5. The name comes from fandango (Spanish).
- HEX: #B53389
- RGB: 181, 51, 137
- HSL: 320.3°, 56%, 45.5%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #33B55F
- Triadic colors: #89B533, #3389B5
- The name comes from fandango (Spanish).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #B53389 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'fandango' is of uncertain origin, but it is firmly rooted in Spanish culture. It refers to a specific type of dance and its accompanying music. The dance is characterized by its energetic and often flirtatious nature, typically performed by a man and a woman, with castanets and guitar accompaniment. It gained popularity in Spain during the 17th and 18th centuries and subsequently spread to other parts of Europe and the Americas. In English, it also developed a secondary, informal meaning, referring to a 'foolish or useless to-do' or a 'commotion,' likely due to the perceived boisterousness of the dance.
First Recorded Use
The earliest known use of 'fandango' in English dates back to the mid-18th century, specifically around 1767, though its Spanish origins are much older.
Cultural Associations
The fandango is a quintessential Spanish folk dance, particularly associated with Andalusia. It is known for its intricate footwork, arm movements, and the rhythmic clicking of castanets. While there are many regional variations, the core elements of passion and vivacity remain. It has influenced classical composers (e.g., Mozart, Rimsky-Korsakov) and is often featured in Spanish-themed ballets and operas. The dance embodies a significant aspect of Spanish cultural identity and festive traditions.
Code Snippets
/* Background */
.element {
background-color: #B53389;
}
/* Text */
.element {
color: #B53389;
}
/* Border */
.element {
border: 1px solid #B53389;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B53389,
#33B55F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B53389,
#33B55F
);
}
// SCSS variable
$fandango: #B53389;
// With RGB channels (useful for rgba() usage)
$fandango-r: 181;
$fandango-g: 51;
$fandango-b: 137;
// Usage
.element {
background-color: $fandango;
color: rgba($fandango-r, $fandango-g, $fandango-b, 0.8);
}