Pale Magenta-pink
HEX: #FF99CC | Modern Palette
Color Specifications
#FF99CC
255, 153, 204
330°, 40% ,100%
0, 40, 20, 0
About Pale Magenta-pink
Pale Magenta-pink (#FF99CC) is a color with RGB(255, 153, 204) and HSL(330°, 40%, 100%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #99FFCC, which creates strong contrast. Its triadic palette includes #CCFF99 and #99CCFF. The name comes from Pale Magenta-pink (English).
- HEX: #FF99CC
- RGB: 255, 153, 204
- HSL: 330°, 40%, 100%
- Style: Warm
- Use case: Text, Background, Print
- Complementary color: #99FFCC
- Triadic colors: #CCFF99, #99CCFF
- The name comes from Pale Magenta-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 #FF99CC from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#BEBECA
#A8A8CC
#FBA1A1
#B9B9B9
Frequently Asked Questions
Name, History & Etymology
History
Magenta itself was named in 1859 after the Battle of Magenta in Italy, coinciding with the discovery of a new aniline dye. Pink has been used as a color name since the late 17th century. 'Pale' as a descriptor for color is ancient. The combination 'Pale Magenta-pink' indicates a nuanced understanding and description of color, moving beyond basic color names to specify lightness and hue variations. Its use would have become more common as color reproduction and description became more precise in industries like textiles, cosmetics, and graphic design.
First Recorded Use
The individual terms 'pale', 'magenta', and 'pink' have much older origins. The specific compound 'Pale Magenta-pink' as a precise color descriptor likely emerged with the increased sophistication of color naming and standardization in art, fashion, and printing, particularly after the widespread adoption of magenta as a named color (mid-19th century).
Cultural Associations
This color, being a light pinkish-magenta, often carries associations similar to pink: femininity, sweetness, romance, and youth. In some contexts, it might be seen as playful or delicate. The 'magenta' aspect adds a touch more vibrancy or sophistication than a pure light pink. It's a popular color in fashion, interior design, and cosmetics, often chosen for its soft yet cheerful appeal.
Code Snippets
/* Background */
.element {
background-color: #FF99CC;
}
/* Text */
.element {
color: #FF99CC;
}
/* Border */
.element {
border: 1px solid #FF99CC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF99CC,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF99CC,
#FFFFFF
);
}
// SCSS variable
$pale-magenta-pink: #FF99CC;
// With RGB channels (useful for rgba() usage)
$pale-magenta-pink-r: 255;
$pale-magenta-pink-g: 153;
$pale-magenta-pink-b: 204;
// Usage
.element {
background-color: $pale-magenta-pink;
color: rgba($pale-magenta-pink-r, $pale-magenta-pink-g, $pale-magenta-pink-b, 0.8);
}