Super Pink

HEX: #CF6BA9 | Modern Palette

On White
3.32:1
FAIL
On Black
6.33:1
PASS

Color Specifications

HEX
#CF6BA9
RGB
207, 107, 169
HSL
322°, 48% ,81%
CMYK
0, 48.31, 18.36, 18.82

About Super Pink

Super Pink (#CF6BA9) is a color with RGB(207, 107, 169) and HSL(322.8°, 48.31%, 81.18%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #6BCF91, which creates strong contrast. Its triadic palette includes #A9CF6B and #6BA9CF. The name comes from Super Pink (English).

  • HEX: #CF6BA9
  • RGB: 207, 107, 169
  • HSL: 322.8°, 48.31%, 81.18%
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #6BCF91
  • Triadic colors: #A9CF6B, #6BA9CF
  • The name comes from Super 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 #CF6BA9 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm

Accessibility Simulation

Deuteranopia #9292A7
Protanopia #7B7BA9
Tritanopia #CA7575
Achromatopsia #8D8D8D

Frequently Asked Questions

Super Pink (#CF6BA9) is a color with RGB(207, 107, 169) and HSL(322.8°, 48.31%, 81.18%).

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

#CF6BA9 is suitable for Text, Button, Background and works well with Warm styles.

The name Super Pink is linked to Super Pink from English, meaning A very intense or exaggerated shade of pink..

Name, History & Etymology

Origin Word Super Pink
Meaning A very intense or exaggerated shade of pink.
Language English
First Recorded Use 20th Century

History

The term 'Super Pink' is a descriptive compound, combining the intensifier 'super' (from Latin 'super' meaning 'above, beyond') with the color 'pink'. Pink itself has a history dating back to the 17th century, derived from the flower 'pink' (Dianthus). The addition of 'super' serves to emphasize a particularly bright, vivid, or perhaps even artificial-looking shade of pink, distinguishing it from more subdued or natural pinks. It's often used in contexts where a striking or playful pink is desired, such as in fashion, cosmetics, toys, and confectionery. The specific hex code #cf6ba9 represents a medium-dark shade of magenta-pink, leaning towards a dusty rose or muted fuchsia, which might be considered 'super' in its richness rather than just its brightness, depending on context.

First Recorded Use

While 'super' as a prefix for intensity has been around longer, the specific combination 'Super Pink' likely gained traction in the mid-to-late 20th century, particularly with the rise of vibrant synthetic dyes and marketing of consumer products. Pinpointing an exact first use is difficult without extensive historical textile or paint industry archives, but it aligns with the post-WWII era of increased color variety and descriptive naming.

Cultural Associations

Culturally, 'Super Pink' evokes ideas of heightened femininity, playfulness, and sometimes artificiality or kitsch. Pink, in general, is strongly associated with girls and women in Western cultures, an association that solidified in the mid-20th century. 'Super Pink' amplifies this, often appearing in products marketed to young girls, such as toys (e.g., Barbie accessories), clothing, and sugary treats. It can also be used ironically or subversively in fashion and art to challenge traditional gender norms or embrace an exaggerated aesthetic. Its intensity can also link it to pop art or retro aesthetics from periods like the 1980s.

Similar Named Colors

Sky Magenta #CF71AF ΔE 1.64
Wild Orchid #D470A2 ΔE 3.19
Thulian Pink #DE6FA1 ΔE 4.81
Pearly Purple #B768A2 ΔE 4.84

Code Snippets

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

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

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

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

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

// SCSS variable
$super-pink: #CF6BA9;

// With RGB channels (useful for rgba() usage)
$super-pink-r: 207;
$super-pink-g: 107;
$super-pink-b: 169;

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