Atomic Tangerine

HEX: #FF9966 | Modern Palette

On White
2.10:1
FAIL
On Black
10.00:1
PASS

Color Specifications

HEX
#FF9966
RGB
255, 153, 102
HSL
20°, 100% ,70%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #BEBE60
Protanopia #A8A867
Tritanopia #FF9494
Achromatopsia #B3B3B3

Frequently Asked Questions

Atomic Tangerine (#FF9966) is a color with RGB(255, 153, 102) and HSL(20°, 100%, 70%).

#FF9966 pairs strongly with #66CCFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF9966 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FF9966 is commonly associated with Energetic, Bold.

The name Atomic Tangerine is linked to Atomic Tangerine from English, meaning A bright, reddish-orange color, reminiscent of a tangerine with an 'atomic' or vibrant intensity..

Name, History & Etymology

Origin Word Atomic Tangerine
Meaning A bright, reddish-orange color, reminiscent of a tangerine with an 'atomic' or vibrant intensity.
Language English
First Recorded Use 20th Century

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.

Similar Named Colors

Light Salmon #FFA07A ΔE 3.66
Mango Tango #FF8243 ΔE 5.63
Salmon #FF8C69 ΔE 5.78
Coral #FF7F50 ΔE 6.43

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);
}