Random Color Generator

#cbb895 Color

Color Codes
Hex Code #cbb895
RGB Code rgb(203, 184, 149)
HSL Code hsl(39, 34%, 69%)

#cbb895 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 184, 149);
   }

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(39, 34%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(203, 184, 149, 10%) #cbb8951a  
rgb(203, 184, 149, 20%) #cbb89533  
rgb(203, 184, 149, 40%) #cbb8954C  
rgb(203, 184, 149, 60%) #cbb89599  
rgb(203, 184, 149, 80%) #cbb895CC  
rgb(203, 184, 149, 100%) #cbb895FF  

Saturated and desaturated colors of #cbb895

HSL Code Preview
hsl(39, 10%, 69%)  
hsl(39, 20%, 69%)  
hsl(39, 40%, 69%)  
hsl(39, 60%, 69%)  
hsl(39, 80%, 69%)  
hsl(39, 100%, 69%)  

#cbb895 Color Usage In CSS

 body {
    color: #cbb895;
    }
 p {
    color: rgb(203, 184, 149);
    }
 header {
    border-bottom:1px solid #cbb895;
    }
Recent Random Colors