Mango Tango

HEX: #FF8243 | Modern Palette

On White
2.46:1
FAIL
On Black
8.53:1
PASS

Color Specifications

HEX
#FF8243
RGB
255, 130, 67
HSL
20°, 100% ,63%
CMYK
0, 49, 74, 0

About Mango Tango

Mango Tango (#FF8243) is a color with RGB(255, 130, 67) and HSL(20.1°, 100%, 63.1%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #43C0FF, which creates strong contrast. Its triadic palette includes #43FF82 and #8243FF. The name comes from Mango Tango (English (blend)).

  • HEX: #FF8243
  • RGB: 255, 130, 67
  • HSL: 20.1°, 100%, 63.1%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #43C0FF
  • Triadic colors: #43FF82, #8243FF
  • The name comes from Mango Tango (English (blend)).

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 #FF8243 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #B3B338
Protanopia #979745
Tritanopia #FF7C7C
Achromatopsia #A5A5A5

Frequently Asked Questions

Mango Tango (#FF8243) is a color with RGB(255, 130, 67) and HSL(20.1°, 100%, 63.1%).

#FF8243 pairs strongly with #43C0FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF8243 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FF8243 is commonly associated with Energetic, Bold.

The name Mango Tango is linked to Mango Tango from English (blend), meaning A playful and evocative name for a color, combining the fruit 'mango' with the dance 'tango'..

Name, History & Etymology

Origin Word Mango Tango
Meaning A playful and evocative name for a color, combining the fruit 'mango' with the dance 'tango'.
Language English (blend)
First Recorded Use Late 20th - Early 21st Century

History

The name 'Mango Tango' is a modern coinage, not rooted in ancient languages or historical dyes. It's a portmanteau or blend that aims to convey both the color (from mango, which is typically a vibrant orange-yellow) and a feeling or mood (from tango, suggesting passion, warmth, and movement). This type of naming became popular as companies sought to differentiate products and make colors more appealing and memorable. The hex code #ff8243 specifically defines a bright, reddish-orange hue.

First Recorded Use

The exact first use of 'Mango Tango' as a specific color name is difficult to pinpoint precisely, but it aligns with a trend in the late 20th and early 21st centuries to create more descriptive and evocative color names, often blending two distinct concepts. It likely emerged in marketing, fashion, or interior design contexts.

Cultural Associations

The name 'Mango Tango' evokes a sense of tropical warmth, vibrancy, and energy. 'Mango' is associated with tropical fruits, sunshine, and often a sweet, exotic flavor. 'Tango' is a passionate, rhythmic dance originating from Argentina, known for its intensity and dramatic flair. Together, they suggest a color that is lively, bold, and perhaps a little exotic or playful. It's often used in contexts where a cheerful, energetic, or warm atmosphere is desired, such as fashion, home decor, or branding for food and beverage products.

Similar Named Colors

Orange (Crayola) #FF7538 ΔE 3.01
Coral #FF7F50 ΔE 3.79
Pumpkin #FF7518 ΔE 4.63
Vivid Tangelo #F07427 ΔE 4.88

Code Snippets

/* Background */
.element {
    background-color: #FF8243;
}

/* Text */
.element {
    color: #FF8243;
}

/* Border */
.element {
    border: 1px solid #FF8243;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF8243,
        #43C0FF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF8243,
        #43C0FF
    );
}

// SCSS variable
$mango-tango: #FF8243;

// With RGB channels (useful for rgba() usage)
$mango-tango-r: 255;
$mango-tango-g: 130;
$mango-tango-b: 67;

// Usage
.element {
    background-color: $mango-tango;
    color: rgba($mango-tango-r, $mango-tango-g, $mango-tango-b, 0.8);
}