Random Color Generator

#cd569c Color

Color Codes
Hex Code #cd569c
RGB Code rgb(205, 86, 156)
HSL Code hsl(325, 54%, 57%)

#cd569c Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 86, 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(325, 54%, 57%);
  }

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 #cd569c

RGB Code Hex Code Preview
rgb(205, 86, 156, 10%) #cd569c1a  
rgb(205, 86, 156, 20%) #cd569c33  
rgb(205, 86, 156, 40%) #cd569c4C  
rgb(205, 86, 156, 60%) #cd569c99  
rgb(205, 86, 156, 80%) #cd569cCC  
rgb(205, 86, 156, 100%) #cd569cFF  

Saturated and desaturated colors of #cd569c

HSL Code Preview
hsl(325, 10%, 57%)  
hsl(325, 20%, 57%)  
hsl(325, 40%, 57%)  
hsl(325, 60%, 57%)  
hsl(325, 80%, 57%)  
hsl(325, 100%, 57%)  

#cd569c Color Usage In CSS

 body {
    color: #cd569c;
    }
 p {
    color: rgb(205, 86, 156);
    }
 header {
    border-bottom:1px solid #cd569c;
    }
Recent Random Colors