Ultra Pink
HEX: #FF6FFF | Modern Palette
Color Specifications
#FF6FFF
255, 111, 255
300°, 100% ,71%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}