Ultra Pink

HEX: #FF6FFF | Modern Palette

On White
2.34:1
FAIL
On Black
8.97:1
PASS

Color Specifications

HEX
#FF6FFF
RGB
255, 111, 255
HSL
300°, 100% ,71%
CMYK
0, 56, 0, 0

About Ultra Pink

Ultra Pink (#FF6FFF) is a color with RGB(255, 111, 255) and HSL(300°, 100%, 71.8%). 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 #6FFF6F, which creates strong contrast. Its triadic palette includes #FFFF6F and #6FFFFF. The name comes from Ultra Pink (English).

  • HEX: #FF6FFF
  • RGB: 255, 111, 255
  • HSL: 300°, 100%, 71.8%
  • Mood: Bold, Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #6FFF6F
  • Triadic colors: #FFFF6F, #6FFFFF
  • The name comes from Ultra 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 #FF6FFF from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #AAAAFD
Protanopia #8989FF
Tritanopia #F28D8D
Achromatopsia #A9A9A9

Frequently Asked Questions

Ultra Pink (#FF6FFF) is a color with RGB(255, 111, 255) and HSL(300°, 100%, 71.8%).

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

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

#FF6FFF is commonly associated with Bold, Playful.

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

Name, History & Etymology

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

History

The color pink itself has a rich history, evolving from being associated with masculinity in some periods to femininity in others. The 'ultra' prefix signifies a departure from more subdued or naturalistic shades of pink, pointing towards a manufactured, highly saturated, and often playful or bold aesthetic. Colors like 'shocking pink' (introduced by Elsa Schiaparelli in the 1930s) paved the way for the acceptance and popularity of such intense pinks. 'Ultra Pink' fits into this lineage of vibrant, attention-grabbing pinks that have been embraced in fashion, pop culture, and digital design.

First Recorded Use

The term 'ultra' as a prefix to describe an extreme version of a color became more common in the latter half of the 20th century, particularly with the rise of synthetic dyes and more vibrant color palettes in fashion and design. While a precise 'first use' for 'Ultra Pink' is difficult to pinpoint, its conceptualization as a distinct, highly saturated pink would align with this period.

Cultural Associations

Ultra Pink, with its high saturation and brightness, often evokes feelings of energy, playfulness, and modernity. It's frequently seen in contexts related to youth culture, pop art, digital aesthetics (vaporwave, synthwave), and fashion that aims to be bold and expressive. It can also carry connotations of rebellion against traditional, softer pinks, asserting a more powerful or even 'electric' femininity. Its vibrancy makes it a popular choice for branding that wants to stand out.

Similar Named Colors

Pink Flamingo #FC74FD ΔE 0.80
Fuchsia Pink #FF77FF ΔE 1.30
Violet #EE82EE ΔE 4.24
Light Fuchsia Pink #F984EF ΔE 4.53

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF6FFF,
        #6FFF6F
    );
}

// SCSS variable
$ultra-pink: #FF6FFF;

// With RGB channels (useful for rgba() usage)
$ultra-pink-r: 255;
$ultra-pink-g: 111;
$ultra-pink-b: 255;

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