Hot Pink
HEX: #FF69B4 | Modern Palette
Color Specifications
#FF69B4
255, 105, 180
330°, 100% ,70%
0, 59, 29, 0
About Hot Pink
Hot Pink (#FF69B4) is a color with RGB(255, 105, 180) and HSL(330°, 100%, 70.6%). 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 #69FFB4, which creates strong contrast. Its triadic palette includes #B4FF69 and #69B4FF. The name comes from Hot Pink (English).
- HEX: #FF69B4
- RGB: 255, 105, 180
- HSL: 330°, 100%, 70.6%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #69FFB4
- Triadic colors: #B4FF69, #69B4FF
- The name comes from Hot 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 #FF69B4 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color pink has a long history, but 'hot pink' as a distinct named shade gained prominence in the mid-22th century. It is often associated with vibrancy, youth, and a certain rebellious or playful spirit. Its popularity surged in various fashion and design movements, including the mod era, punk, and later in the 1980s with its association with pop culture and synthetic materials. The hexadecimal code #ff69b4 is a specific digital representation of a hot pink shade.
First Recorded Use
The term 'hot pink' began to appear in common usage and fashion contexts in the 1940s and 1950s, though the specific color itself existed prior to this naming.
Cultural Associations
Hot pink is widely recognized and used across various cultures, often carrying connotations of femininity, playfulness, energy, and sometimes rebellion or kitsch. It has been a staple in fashion, cosmetics, and graphic design. It is notably associated with the Barbie brand, which significantly popularized a specific shade of hot pink globally. It can also be seen as a bold and attention-grabbing color.
Code Snippets
/* Background */
.element {
background-color: #FF69B4;
}
/* Text */
.element {
color: #FF69B4;
}
/* Border */
.element {
border: 1px solid #FF69B4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF69B4,
#69FFB4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF69B4,
#69FFB4
);
}
// SCSS variable
$hot-pink: #FF69B4;
// With RGB channels (useful for rgba() usage)
$hot-pink-r: 255;
$hot-pink-g: 105;
$hot-pink-b: 180;
// Usage
.element {
background-color: $hot-pink;
color: rgba($hot-pink-r, $hot-pink-g, $hot-pink-b, 0.8);
}