Vivid Tangerine
HEX: #FFA089 | Modern Palette
Color Specifications
#FFA089
255, 160, 137
11°, 100% ,76%
0, 37, 46, 0
About Vivid Tangerine
Vivid Tangerine (#FFA089) is a color with RGB(255, 160, 137) and HSL(11.7°, 100%, 76.9%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #89E8FF, which creates strong contrast. Its triadic palette includes #89FFA0 and #A089FF. The name comes from Vivid Tangerine (English).
- HEX: #FFA089
- RGB: 255, 160, 137
- HSL: 11.7°, 100%, 76.9%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #89E8FF
- Triadic colors: #89FFA0, #A089FF
- The name comes from Vivid Tangerine (English).
Live Components
Color Palettes
Vivid Tangerine #FFA089 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
Vivid Tangerine #FFA089 pairs with #89E8FF as its complementary color, and #89FFA0 and #A089FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'tangerine' as a color has existed since the fruit became widely known. However, adding 'vivid' to specify a particular intensity is a more modern development in color nomenclature. Color naming conventions became more precise with the advent of color guides like Pantone in the mid-20th century, allowing for specific shades like 'Vivid Tangerine' to be identified and communicated consistently across industries. It evokes energy, warmth, and tropical associations.
First Recorded Use
The specific color name 'Vivid Tangerine' likely emerged with the standardization of color naming systems in the mid to late 20th century, particularly in art, fashion, and design industries. The word 'tangerine' for the fruit itself dates back to the late 19th century (referring to Tangier, Morocco).
Cultural Associations
Tangerine colors are often associated with warmth, energy, enthusiasm, creativity, and tropical themes. In fashion, it can be seen as bold and playful. In interior design, it can add a pop of color and vibrancy. It's also sometimes linked to sunsets and autumn foliage, though 'vivid' pushes it more towards a bright, summery feel.
Code Snippets
/* Background */
.element {
background-color: #FFA089;
}
/* Text */
.element {
color: #FFA089;
}
/* Border */
.element {
border: 1px solid #FFA089;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFA089,
#89E8FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFA089,
#89E8FF
);
}
// SCSS variable
$vivid-tangerine: #FFA089;
// With RGB channels (useful for rgba() usage)
$vivid-tangerine-r: 255;
$vivid-tangerine-g: 160;
$vivid-tangerine-b: 137;
// Usage
.element {
background-color: $vivid-tangerine;
color: rgba($vivid-tangerine-r, $vivid-tangerine-g, $vivid-tangerine-b, 0.8);
}