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
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 #F28500 from deepest shade to lightest tint.
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);
}