Light Deep Pink
HEX: #FF5CCD | Modern Palette
On White
2.74:1
FAIL
On Black
7.66:1
PASS
Color Specifications
HEX
#FF5CCD
RGB
255, 92, 205
HSL
318°, 63% ,100%
CMYK
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
LIGHT
DARK
System Notification Box
Color Palettes
Light Deep Pink #FF5CCD is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Monochromatic
Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent
Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous
Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1
Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.
Color Harmonies
Light Deep Pink #FF5CCD pairs with #5CFF8E as its complementary color, and #CDFF5C and #5CCDFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
Deuteranopia
#A3A3CA
Protanopia
#7D7DCE
Tritanopia
#F77373
Achromatopsia
#9C9C9C
Frequently Asked Questions
Light Deep Pink (#FF5CCD) is a color with RGB(255, 92, 205) and HSL(318.4°, 63.92%, 100%).
#FF5CCD pairs strongly with #5CFF8E as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#FF5CCD is suitable for Text, Button, Background and works well with Warm styles.
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);
}