Random Color Generator

#cd5c60 Color

Color Codes
Hex Code #cd5c60
RGB Code rgb(205, 92, 96)
HSL Code hsl(358, 53%, 58%)

#cd5c60 Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 92, 96);
   }

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(358, 53%, 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 #cd5c60

RGB Code Hex Code Preview
rgb(205, 92, 96, 10%) #cd5c601a  
rgb(205, 92, 96, 20%) #cd5c6033  
rgb(205, 92, 96, 40%) #cd5c604C  
rgb(205, 92, 96, 60%) #cd5c6099  
rgb(205, 92, 96, 80%) #cd5c60CC  
rgb(205, 92, 96, 100%) #cd5c60FF  

Saturated and desaturated colors of #cd5c60

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

#cd5c60 Color Usage In CSS

 body {
    color: #cd5c60;
    }
 p {
    color: rgb(205, 92, 96);
    }
 header {
    border-bottom:1px solid #cd5c60;
    }
Recent Random Colors