Light Deep Pink
HEX: #FF5CCD | Modern Palette
Color Specifications
#FF5CCD
255, 92, 205
318°, 63% ,100%
0, 63.92, 19.61, 0
About Light Deep Pink
Light Deep Pink (#FF5CCD) is a color with RGB(255, 92, 205) and HSL(318.4°, 63.92%, 100%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #5CFF8E, which creates strong contrast. Its triadic palette includes #CDFF5C and #5CCDFF.
- HEX: #FF5CCD
- RGB: 255, 92, 205
- HSL: 318.4°, 63.92%, 100%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #5CFF8E
- Triadic colors: #CDFF5C, #5CCDFF
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 #FF5CCD from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A3A3CA
#7D7DCE
#F77373
#9C9C9C
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FF5CCD;
}
/* Text */
.element {
color: #FF5CCD;
}
/* Border */
.element {
border: 1px solid #FF5CCD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF5CCD,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF5CCD,
#FFFFFF
);
}
// SCSS variable
$light-deep-pink: #FF5CCD;
// With RGB channels (useful for rgba() usage)
$light-deep-pink-r: 255;
$light-deep-pink-g: 92;
$light-deep-pink-b: 205;
// Usage
.element {
background-color: $light-deep-pink;
color: rgba($light-deep-pink-r, $light-deep-pink-g, $light-deep-pink-b, 0.8);
}