Shocking Pink
HEX: #FC0FC0 | Modern Palette
Color Specifications
#FC0FC0
252, 15, 192
315°, 97% ,52%
0, 94, 24, 1
About Shocking Pink
Shocking Pink (#FC0FC0) is a color with RGB(252, 15, 192) and HSL(315.2°, 97.5%, 52.4%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0FFC4B, which creates strong contrast. Its triadic palette includes #C0FC0F and Spiro Disco Ball (#0FC0FC). The name comes from Shocking Pink (English).
- HEX: #FC0FC0
- RGB: 252, 15, 192
- HSL: 315.2°, 97.5%, 52.4%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0FFC4B
- Triadic colors: #C0FC0F, Spiro Disco Ball (#0FC0FC)
- The name comes from Shocking 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 #FC0FC0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Shocking Pink' was popularized by the Italian fashion designer Elsa Schiaparelli. She launched her perfume 'Shocking' in 1937, and its packaging, designed by Leonor Fini, was a distinctive hot pink, inspired by the color of a duke's pink diamond and the vibrant pinks of the circus. This specific shade became her signature color and was widely associated with her avant-garde designs. The color itself, a bright fuchsia-like pink, existed before the name, but Schiaparelli's branding cemented 'Shocking Pink' into the lexicon of fashion and color.
First Recorded Use
1937
Cultural Associations
Shocking Pink is often associated with boldness, femininity, glamour, and a certain rebellious spirit. It has been used extensively in fashion, art, and pop culture to make a statement. Its intensity can evoke feelings of playfulness, extravagance, and sometimes even kitsch, depending on its application. It stands in contrast to more subdued or 'pretty' pinks, aiming for impact rather than subtlety. It has seen resurgences in popularity, particularly in eras that embrace vibrant and expressive aesthetics.
Code Snippets
/* Background */
.element {
background-color: #FC0FC0;
}
/* Text */
.element {
color: #FC0FC0;
}
/* Border */
.element {
border: 1px solid #FC0FC0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FC0FC0,
#0FFC4B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FC0FC0,
#0FFC4B
);
}
// SCSS variable
$shocking-pink: #FC0FC0;
// With RGB channels (useful for rgba() usage)
$shocking-pink-r: 252;
$shocking-pink-g: 15;
$shocking-pink-b: 192;
// Usage
.element {
background-color: $shocking-pink;
color: rgba($shocking-pink-r, $shocking-pink-g, $shocking-pink-b, 0.8);
}