Random Color Generator

#cbb79a Color

Color Codes
Hex Code #cbb79a
RGB Code rgb(203, 183, 154)
HSL Code hsl(36, 32%, 70%)

#cbb79a Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 183, 154);
   }

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, 32%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(203, 183, 154, 10%) #cbb79a1a  
rgb(203, 183, 154, 20%) #cbb79a33  
rgb(203, 183, 154, 40%) #cbb79a4C  
rgb(203, 183, 154, 60%) #cbb79a99  
rgb(203, 183, 154, 80%) #cbb79aCC  
rgb(203, 183, 154, 100%) #cbb79aFF  

Saturated and desaturated colors of #cbb79a

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

#cbb79a Color Usage In CSS

 body {
    color: #cbb79a;
    }
 p {
    color: rgb(203, 183, 154);
    }
 header {
    border-bottom:1px solid #cbb79a;
    }
Recent Random Colors