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