Hot Pink

HEX: #FF69B4 | Modern Palette

On White
2.65:1
FAIL
On Black
7.93:1
PASS

Color Specifications

HEX
#FF69B4
RGB
255, 105, 180
HSL
330°, 100% ,70%
CMYK
0, 59, 29, 0

About Hot Pink

Hot Pink (#FF69B4) is a color with RGB(255, 105, 180) and HSL(330°, 100%, 70.6%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #69FFB4, which creates strong contrast. Its triadic palette includes #B4FF69 and #69B4FF. The name comes from Hot Pink (English).

  • HEX: #FF69B4
  • RGB: 255, 105, 180
  • HSL: 330°, 100%, 70.6%
  • Mood: Bold, Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #69FFB4
  • Triadic colors: #B4FF69, #69B4FF
  • The name comes from Hot Pink (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 #FF69B4 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A8A8B1
Protanopia #8585B5
Tritanopia #FA7676
Achromatopsia #9F9F9F

Frequently Asked Questions

Hot Pink (#FF69B4) is a color with RGB(255, 105, 180) and HSL(330°, 100%, 70.6%).

#FF69B4 pairs strongly with #69FFB4 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF69B4 is suitable for Text, Button, Accent and works well with Neon, Warm styles.

#FF69B4 is commonly associated with Bold, Playful.

The name Hot Pink is linked to Hot Pink from English, meaning A vivid, bright shade of pink..

Name, History & Etymology

Origin Word Hot Pink
Meaning A vivid, bright shade of pink.
Language English
First Recorded Use Mid-20th Century

History

The color pink has a long history, but 'hot pink' as a distinct named shade gained prominence in the mid-22th century. It is often associated with vibrancy, youth, and a certain rebellious or playful spirit. Its popularity surged in various fashion and design movements, including the mod era, punk, and later in the 1980s with its association with pop culture and synthetic materials. The hexadecimal code #ff69b4 is a specific digital representation of a hot pink shade.

First Recorded Use

The term 'hot pink' began to appear in common usage and fashion contexts in the 1940s and 1950s, though the specific color itself existed prior to this naming.

Cultural Associations

Hot pink is widely recognized and used across various cultures, often carrying connotations of femininity, playfulness, energy, and sometimes rebellion or kitsch. It has been a staple in fashion, cosmetics, and graphic design. It is notably associated with the Barbie brand, which significantly popularized a specific shade of hot pink globally. It can also be seen as a bold and attention-grabbing color.

Similar Named Colors

Brilliant Rose #FF55A3 ΔE 3.87
Persian Pink #F77FBE ΔE 4.08
Neon Fuchsia #FE59C2 ΔE 4.64
Rose Pink #FF66CC ΔE 4.98

Code Snippets

/* Background */
.element {
    background-color: #FF69B4;
}

/* Text */
.element {
    color: #FF69B4;
}

/* Border */
.element {
    border: 1px solid #FF69B4;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF69B4,
        #69FFB4
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF69B4,
        #69FFB4
    );
}

// SCSS variable
$hot-pink: #FF69B4;

// With RGB channels (useful for rgba() usage)
$hot-pink-r: 255;
$hot-pink-g: 105;
$hot-pink-b: 180;

// Usage
.element {
    background-color: $hot-pink;
    color: rgba($hot-pink-r, $hot-pink-g, $hot-pink-b, 0.8);
}