Mango Tango
HEX: #FF8243 | Modern Palette
Color Specifications
#FF8243
255, 130, 67
20°, 100% ,63%
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
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 #FF8243 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}