Fandango

HEX: #B53389 | Modern Palette

On White
5.53:1
PASS
On Black
3.80:1
FAIL

Color Specifications

HEX
#B53389
RGB
181, 51, 137
HSL
320°, 56% ,45%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #6F6F87
Protanopia #505089
Tritanopia #B04646
Achromatopsia #696969

Frequently Asked Questions

Fandango (#B53389) is a color with RGB(181, 51, 137) and HSL(320.3°, 56%, 45.5%).

#B53389 pairs strongly with #33B55F as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#B53389 is suitable for Text, Button, Logo and works well with Warm styles.

#B53389 is commonly associated with Romantic.

The name Fandango is linked to fandango from Spanish, meaning A lively Spanish dance, usually performed by a couple, and accompanied by guitars and castanets. Also, the music for this dance..

Name, History & Etymology

Origin Word fandango
Meaning A lively Spanish dance, usually performed by a couple, and accompanied by guitars and castanets. Also, the music for this dance.
Language Spanish
First Recorded Use 18th Century

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.

Similar Named Colors

Medium Red Violet #BB3385 ΔE 1.90
Red Violet #C71585 ΔE 3.60
Royal Fuchsia #CA2C92 ΔE 3.90
Magenta-pink #CC338B ΔE 5.02

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);
}