Random Color Generator

#cb6649 Color

Color Codes
Hex Code #cb6649
RGB Code rgb(203, 102, 73)
HSL Code hsl(13, 56%, 54%)

#cb6649 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 102, 73);
   }

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(13, 56%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(203, 102, 73, 10%) #cb66491a  
rgb(203, 102, 73, 20%) #cb664933  
rgb(203, 102, 73, 40%) #cb66494C  
rgb(203, 102, 73, 60%) #cb664999  
rgb(203, 102, 73, 80%) #cb6649CC  
rgb(203, 102, 73, 100%) #cb6649FF  

Saturated and desaturated colors of #cb6649

HSL Code Preview
hsl(13, 10%, 54%)  
hsl(13, 20%, 54%)  
hsl(13, 40%, 54%)  
hsl(13, 60%, 54%)  
hsl(13, 80%, 54%)  
hsl(13, 100%, 54%)  

#cb6649 Color Usage In CSS

 body {
    color: #cb6649;
    }
 p {
    color: rgb(203, 102, 73);
    }
 header {
    border-bottom:1px solid #cb6649;
    }
Recent Random Colors