Random Color Generator

#cd5267 Color

Color Codes
Hex Code #cd5267
RGB Code rgb(205, 82, 103)
HSL Code hsl(350, 55%, 56%)

#cd5267 Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 82, 103);
   }

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(350, 55%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(205, 82, 103, 10%) #cd52671a  
rgb(205, 82, 103, 20%) #cd526733  
rgb(205, 82, 103, 40%) #cd52674C  
rgb(205, 82, 103, 60%) #cd526799  
rgb(205, 82, 103, 80%) #cd5267CC  
rgb(205, 82, 103, 100%) #cd5267FF  

Saturated and desaturated colors of #cd5267

HSL Code Preview
hsl(350, 10%, 56%)  
hsl(350, 20%, 56%)  
hsl(350, 40%, 56%)  
hsl(350, 60%, 56%)  
hsl(350, 80%, 56%)  
hsl(350, 100%, 56%)  

#cd5267 Color Usage In CSS

 body {
    color: #cd5267;
    }
 p {
    color: rgb(205, 82, 103);
    }
 header {
    border-bottom:1px solid #cd5267;
    }
Recent Random Colors