Light Hot Pink
HEX: #FFB3DE | Modern Palette
Color Specifications
#FFB3DE
255, 179, 222
326°, 29% ,100%
0, 29.8, 12.94, 0
About Light Hot Pink
Light Hot Pink (#FFB3DE) is a color with RGB(255, 179, 222) and HSL(326.05°, 29.8%, 100%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #B3FFD4, which creates strong contrast. Its triadic palette includes #DEFFB3 and #B3DEFF. The name comes from Light Hot Pink (English).
- HEX: #FFB3DE
- RGB: 255, 179, 222
- HSL: 326.05°, 29.8%, 100%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #B3FFD4
- Triadic colors: #DEFFB3, #B3DEFF
- The name comes from Light 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 #FFB3DE from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CDCDDC
#BDBDDE
#FBB9B9
#CACACA
Frequently Asked Questions
Name, History & Etymology
History
The word 'pink' itself comes from the Dutch 'pinck oogen' (small eyes) referring to the small eyes of flowers, or from the flower 'pink' (Dianthus). As a color, it became distinct from red in the 17th century. 'Hot pink' emerged in the mid-20th century, particularly gaining traction in fashion and pop culture from the 1960s onwards, signifying vibrancy and boldness. The addition of 'light' to 'hot pink' allows for a more nuanced description of a less saturated or brighter, but still intense, version of hot pink. The precise hex code #ffb3de is a modern digital specification.
First Recorded Use
While 'pink' has ancient roots, the specific combination 'Light Hot Pink' as a distinct color name, especially with a precise hex code like #ffb3de, is a product of the digital age and expanded color naming conventions. 'Hot pink' gained popularity in the mid-20th century, and 'light hot pink' would naturally follow as a descriptor for variations. The hex code itself points to post-1990s usage.
Cultural Associations
Pink, in general, is often associated with femininity, sweetness, romance, and playfulness. 'Hot pink' specifically carries connotations of energy, excitement, boldness, and sometimes rebellion or a 'punk' aesthetic. 'Light Hot Pink' might retain some of the vibrancy of 'hot pink' but with a softer, more approachable, or even whimsical feel. It's a color often seen in fashion, cosmetics, children's products, and branding aiming for a youthful or energetic yet not overly aggressive vibe.
Code Snippets
/* Background */
.element {
background-color: #FFB3DE;
}
/* Text */
.element {
color: #FFB3DE;
}
/* Border */
.element {
border: 1px solid #FFB3DE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFB3DE,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFB3DE,
#FFFFFF
);
}
// SCSS variable
$light-hot-pink: #FFB3DE;
// With RGB channels (useful for rgba() usage)
$light-hot-pink-r: 255;
$light-hot-pink-g: 179;
$light-hot-pink-b: 222;
// Usage
.element {
background-color: $light-hot-pink;
color: rgba($light-hot-pink-r, $light-hot-pink-g, $light-hot-pink-b, 0.8);
}