Dark Tangerine
HEX: #FFA812 | Modern Palette
Color Specifications
#FFA812
255, 168, 18
38°, 100% ,53%
0, 34, 93, 0
About Dark Tangerine
Dark Tangerine (#FFA812) is a color with RGB(255, 168, 18) and HSL(38°, 100%, 53.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 #1269FF, which creates strong contrast. Its triadic palette includes #12FFA8 and #A812FF. The name comes from Dark Tangerine (English).
- HEX: #FFA812
- RGB: 255, 168, 18
- HSL: 38°, 100%, 53.5%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1269FF
- Triadic colors: #12FFA8, #A812FF
- The name comes from Dark Tangerine (English).
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 #FFA812 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'tangerine' is named after the tangerine fruit, a type of mandarin orange. The fruit itself is believed to have originated in Southeast Asia and was introduced to Europe and the Americas in the 19th century. The city of Tangier in Morocco was a significant port for exporting these fruits, which is how they acquired the name 'tangerine'. As a color, 'tangerine' became popular in fashion and design in the early to mid-20th century, often associated with vibrancy and exoticism. 'Dark Tangerine' simply specifies a deeper, richer version of this established color.
First Recorded Use
The term 'tangerine' as a color name emerged in the early 20th century, specifically around 1899-1900, shortly after the fruit became more widely known. 'Dark Tangerine' would naturally follow as a descriptive modifier once 'tangerine' was established as a color.
Cultural Associations
While 'tangerine' itself evokes images of tropical fruits, warmth, and energy, 'Dark Tangerine' can carry a slightly more sophisticated or autumnal feel due to its deeper tone. It might be used to represent a rich sunset, a spicy flavor, or a more grounded warmth compared to its brighter counterpart. It's less common as a standalone cultural symbol but derives its associations from the broader 'tangerine' color family.
Code Snippets
/* Background */
.element {
background-color: #FFA812;
}
/* Text */
.element {
color: #FFA812;
}
/* Border */
.element {
border: 1px solid #FFA812;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFA812,
#1269FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFA812,
#1269FF
);
}
// SCSS variable
$dark-tangerine: #FFA812;
// With RGB channels (useful for rgba() usage)
$dark-tangerine-r: 255;
$dark-tangerine-g: 168;
$dark-tangerine-b: 18;
// Usage
.element {
background-color: $dark-tangerine;
color: rgba($dark-tangerine-r, $dark-tangerine-g, $dark-tangerine-b, 0.8);
}