Tangerine
HEX: #F28500 | Modern Palette
Color Specifications
#F28500
242, 133, 0
33°, 100% ,47%
0, 45, 100, 5
About Tangerine
Tangerine (#F28500) is a color with RGB(242, 133, 0) and HSL(33°, 100%, 47.5%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #006DF2, which creates strong contrast. Its triadic palette includes #00F285 and #8500F2. The name comes from tangerine (French).
- HEX: #F28500
- RGB: 242, 133, 0
- HSL: 33°, 100%, 47.5%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #006DF2
- Triadic colors: #00F285, #8500F2
- The name comes from tangerine (French).
Live Components
Color Palettes
Tangerine #F28500 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
Tangerine #F28500 pairs with #006DF2 as its complementary color, and #00F285 and #8500F2 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 word "tangerine" is derived from Tangier, a port city in Morocco, from which the fruit was first exported to Europe. The fruit itself is a type of mandarin orange (Citrus reticulata). The name was adopted into English to specifically refer to this variety of mandarin. The first recorded use of the word in English dates back to 1845.
First Recorded Use
1845
Cultural Associations
Tangerines are often associated with winter holidays, particularly Christmas, in many Western cultures, where they are a traditional stocking stuffer. They are also culturally significant in some Asian countries, particularly during Lunar New Year celebrations, symbolizing good fortune and abundance due to their golden color and round shape.
Code Snippets
/* Background */
.element {
background-color: #F28500;
}
/* Text */
.element {
color: #F28500;
}
/* Border */
.element {
border: 1px solid #F28500;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F28500,
#006DF2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F28500,
#006DF2
);
}
// SCSS variable
$tangerine: #F28500;
// With RGB channels (useful for rgba() usage)
$tangerine-r: 242;
$tangerine-g: 133;
$tangerine-b: 0;
// Usage
.element {
background-color: $tangerine;
color: rgba($tangerine-r, $tangerine-g, $tangerine-b, 0.8);
}