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

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

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

Mood
Style
Warm

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.

Similar Named Colors

Rose Pink #FF66CC ΔE 1.67
Neon Fuchsia #FE59C2 ΔE 1.88
Purple Pizzazz #FE4EDA ΔE 3.33
Razzle Dazzle Rose #FF33CC ΔE 4.90

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);
}