Queen Pink

HEX: #E8CCD7 | Modern Palette

On White
1.49:1
FAIL
On Black
14.05:1
PASS

Color Specifications

HEX
#E8CCD7
RGB
232, 204, 215
HSL
336°, 12% ,90%
CMYK
0, 12.07, 7.33, 9.02

About Queen Pink

Queen Pink (#E8CCD7) is a color with RGB(232, 204, 215) and HSL(336.43°, 12.07%, 90.98%). It is commonly associated with Minimal moods. In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #CCE8DD, which creates strong contrast. Its triadic palette includes #D7E8CC and #CCD7E8. The name comes from Queen Pink (English).

  • HEX: #E8CCD7
  • RGB: 232, 204, 215
  • HSL: 336.43°, 12.07%, 90.98%
  • Mood: Minimal
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #CCE8DD
  • Triadic colors: #D7E8CC, #CCD7E8
  • The name comes from Queen 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 #E8CCD7 from deepest shade to lightest tint.

Color Characteristics

Mood
Minimal
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #D5D5D6
Protanopia #CFCFD7
Tritanopia #E7CDCD
Achromatopsia #D3D3D3

Frequently Asked Questions

Queen Pink (#E8CCD7) is a color with RGB(232, 204, 215) and HSL(336.43°, 12.07%, 90.98%).

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

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

#E8CCD7 is commonly associated with Minimal.

The name Queen Pink is linked to Queen Pink from English, meaning A shade of pink associated with royalty or a regal aesthetic..

Name, History & Etymology

Origin Word Queen Pink
Meaning A shade of pink associated with royalty or a regal aesthetic.
Language English
First Recorded Use Late 20th Century

History

The color pink itself has a complex history, shifting in meaning from a masculine color in the 18th century to a more feminine association in the 20th century. The addition of 'Queen' to a color name typically elevates it, suggesting a premium, elegant, or luxurious quality. This naming convention became popular as brands sought to differentiate their products and evoke specific feelings. 'Queen Pink' would likely have been developed to convey a sophisticated, perhaps slightly muted or dusty, yet distinctly pink hue that feels regal without being overly bright or childish.

First Recorded Use

While the concept of 'queen' and 'pink' have existed for centuries, the specific color name 'Queen Pink' as a defined shade likely emerged with the proliferation of color naming systems in the late 20th century, particularly in fashion, cosmetics, and interior design. It's difficult to pinpoint an exact first use without a specific historical color dictionary or brand launch.

Cultural Associations

In Western cultures, 'Queen Pink' would generally be perceived as elegant, feminine, and perhaps a bit nostalgic or vintage. It might be associated with classic beauty, refined taste, or a gentle form of power. It's less overtly 'girly' than a bright bubblegum pink, and more mature. It could be used in contexts ranging from bridal wear to sophisticated home decor, or in branding for luxury goods aimed at women.

Similar Named Colors

Piggy Pink #FDDDE6 ΔE 4.25
Pale Pink #FADADD ΔE 4.69
Pastel Pink #FFD1DC ΔE 5.37
Thistle #D8BFD8 ΔE 5.96

Code Snippets

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

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

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

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

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

// SCSS variable
$queen-pink: #E8CCD7;

// With RGB channels (useful for rgba() usage)
$queen-pink-r: 232;
$queen-pink-g: 204;
$queen-pink-b: 215;

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