Random Color Generator

#cb9644 Color

Color Codes
Hex Code #cb9644
RGB Code rgb(203, 150, 68)
HSL Code hsl(36, 56%, 53%)

#cb9644 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 150, 68);
   }

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(36, 56%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(203, 150, 68, 10%) #cb96441a  
rgb(203, 150, 68, 20%) #cb964433  
rgb(203, 150, 68, 40%) #cb96444C  
rgb(203, 150, 68, 60%) #cb964499  
rgb(203, 150, 68, 80%) #cb9644CC  
rgb(203, 150, 68, 100%) #cb9644FF  

Saturated and desaturated colors of #cb9644

HSL Code Preview
hsl(36, 10%, 53%)  
hsl(36, 20%, 53%)  
hsl(36, 40%, 53%)  
hsl(36, 60%, 53%)  
hsl(36, 80%, 53%)  
hsl(36, 100%, 53%)  

#cb9644 Color Usage In CSS

 body {
    color: #cb9644;
    }
 p {
    color: rgb(203, 150, 68);
    }
 header {
    border-bottom:1px solid #cb9644;
    }
Recent Random Colors