Atomic Tangerine
HEX: #FF9966 | Modern Palette
Color Specifications
#FF9966
255, 153, 102
20°, 100% ,70%
0, 40, 60, 0
About Atomic Tangerine
Atomic Tangerine (#FF9966) is a color with RGB(255, 153, 102) and HSL(20°, 100%, 70%). 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 #66CCFF, which creates strong contrast. Its triadic palette includes #66FF99 and #9966FF. The name comes from Atomic Tangerine (English).
- HEX: #FF9966
- RGB: 255, 153, 102
- HSL: 20°, 100%, 70%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #66CCFF
- Triadic colors: #66FF99, #9966FF
- The name comes from Atomic Tangerine (English).
Live Components
Color Palettes
Atomic Tangerine #FF9966 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
Atomic Tangerine #FF9966 pairs with #66CCFF as its complementary color, and #66FF99 and #9966FF 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 color 'Atomic Tangerine' was introduced by Crayola in 1990 as part of their 'Magic Scent' crayons, which were scented. The scent associated with Atomic Tangerine was 'orange'. The name combines 'atomic', often used to imply something small, powerful, or vibrant (like atomic energy or atomic particles), with 'tangerine', a type of orange fruit known for its bright color. This naming convention was popular in the mid-to-late 20th century for conveying intensity or modernity.
First Recorded Use
1990
Cultural Associations
As a Crayola color, 'Atomic Tangerine' is primarily associated with childhood, art, and creativity in Western cultures. Its vibrant hue makes it popular in designs aiming for a playful, energetic, or tropical feel. It's often seen in children's products, casual wear, and branding that wants to evoke warmth and fun.
Code Snippets
/* Background */
.element {
background-color: #FF9966;
}
/* Text */
.element {
color: #FF9966;
}
/* Border */
.element {
border: 1px solid #FF9966;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF9966,
#66CCFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF9966,
#66CCFF
);
}
// SCSS variable
$atomic-tangerine: #FF9966;
// With RGB channels (useful for rgba() usage)
$atomic-tangerine-r: 255;
$atomic-tangerine-g: 153;
$atomic-tangerine-b: 102;
// Usage
.element {
background-color: $atomic-tangerine;
color: rgba($atomic-tangerine-r, $atomic-tangerine-g, $atomic-tangerine-b, 0.8);
}