Random Color Generator

#cc5d9c Color

Color Codes
Hex Code #cc5d9c
RGB Code rgb(204, 93, 156)
HSL Code hsl(326, 52%, 58%)

#cc5d9c Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(204, 93, 156);
   }

R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.

hsl()

 hsl(hue saturation lightness);
 hsl(hue saturation lightness / alpha);

 div {
  background-color: hsl(326, 52%, 58%);
  }

Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.

Lighter and darker colors of #cc5d9c

RGB Code Hex Code Preview
rgb(204, 93, 156, 10%) #cc5d9c1a  
rgb(204, 93, 156, 20%) #cc5d9c33  
rgb(204, 93, 156, 40%) #cc5d9c4C  
rgb(204, 93, 156, 60%) #cc5d9c99  
rgb(204, 93, 156, 80%) #cc5d9cCC  
rgb(204, 93, 156, 100%) #cc5d9cFF  

Saturated and desaturated colors of #cc5d9c

HSL Code Preview
hsl(326, 10%, 58%)  
hsl(326, 20%, 58%)  
hsl(326, 40%, 58%)  
hsl(326, 60%, 58%)  
hsl(326, 80%, 58%)  
hsl(326, 100%, 58%)  

#cc5d9c Color Usage In CSS

 body {
    color: #cc5d9c;
    }
 p {
    color: rgb(204, 93, 156);
    }
 header {
    border-bottom:1px solid #cc5d9c;
    }
Recent Random Colors