Light Hot Pink

HEX: #FFB3DE | Modern Palette

On White
1.65:1
FAIL
On Black
12.75:1
PASS

Color Specifications

HEX
#FFB3DE
RGB
255, 179, 222
HSL
326°, 29% ,100%
CMYK
0, 29.8, 12.94, 0

About Light Hot Pink

Light Hot Pink (#FFB3DE) is a color with RGB(255, 179, 222) and HSL(326.05°, 29.8%, 100%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #B3FFD4, which creates strong contrast. Its triadic palette includes #DEFFB3 and #B3DEFF. The name comes from Light Hot Pink (English).

  • HEX: #FFB3DE
  • RGB: 255, 179, 222
  • HSL: 326.05°, 29.8%, 100%
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #B3FFD4
  • Triadic colors: #DEFFB3, #B3DEFF
  • The name comes from Light 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 #FFB3DE from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #CDCDDC
Protanopia #BDBDDE
Tritanopia #FBB9B9
Achromatopsia #CACACA

Frequently Asked Questions

Light Hot Pink (#FFB3DE) is a color with RGB(255, 179, 222) and HSL(326.05°, 29.8%, 100%).

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

#FFB3DE is suitable for Text, Background, Print and works well with Pastel, Warm styles.

The name Light Hot Pink is linked to Light Hot Pink from English, meaning A descriptive color name indicating a lighter shade of a vibrant, intense pink..

Name, History & Etymology

Origin Word Light Hot Pink
Meaning A descriptive color name indicating a lighter shade of a vibrant, intense pink.
Language English
First Recorded Use Late 20th Century

History

The word 'pink' itself comes from the Dutch 'pinck oogen' (small eyes) referring to the small eyes of flowers, or from the flower 'pink' (Dianthus). As a color, it became distinct from red in the 17th century. 'Hot pink' emerged in the mid-20th century, particularly gaining traction in fashion and pop culture from the 1960s onwards, signifying vibrancy and boldness. The addition of 'light' to 'hot pink' allows for a more nuanced description of a less saturated or brighter, but still intense, version of hot pink. The precise hex code #ffb3de is a modern digital specification.

First Recorded Use

While 'pink' has ancient roots, the specific combination 'Light Hot Pink' as a distinct color name, especially with a precise hex code like #ffb3de, is a product of the digital age and expanded color naming conventions. 'Hot pink' gained popularity in the mid-20th century, and 'light hot pink' would naturally follow as a descriptor for variations. The hex code itself points to post-1990s usage.

Cultural Associations

Pink, in general, is often associated with femininity, sweetness, romance, and playfulness. 'Hot pink' specifically carries connotations of energy, excitement, boldness, and sometimes rebellion or a 'punk' aesthetic. 'Light Hot Pink' might retain some of the vibrancy of 'hot pink' but with a softer, more approachable, or even whimsical feel. It's a color often seen in fashion, cosmetics, children's products, and branding aiming for a youthful or energetic yet not overly aggressive vibe.

Similar Named Colors

Lavender Pink #FBAED2 ΔE 2.38
Cotton Candy #FFBCD9 ΔE 3.81
Pink Pearl #E7ACCF ΔE 4.31
Carnation Pink #FFA6C9 ΔE 4.59

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFB3DE,
        #FFFFFF
    );
}

// SCSS variable
$light-hot-pink: #FFB3DE;

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

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