Random Color Generator

#b49963 Color

Color Codes
Hex Code #b49963
RGB Code rgb(180, 153, 99)
HSL Code hsl(40, 35%, 55%)

#b49963 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 153, 99);
   }

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(40, 35%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(180, 153, 99, 10%) #b499631a  
rgb(180, 153, 99, 20%) #b4996333  
rgb(180, 153, 99, 40%) #b499634C  
rgb(180, 153, 99, 60%) #b4996399  
rgb(180, 153, 99, 80%) #b49963CC  
rgb(180, 153, 99, 100%) #b49963FF  

Saturated and desaturated colors of #b49963

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

#b49963 Color Usage In CSS

 body {
    color: #b49963;
    }
 p {
    color: rgb(180, 153, 99);
    }
 header {
    border-bottom:1px solid #b49963;
    }
Recent Random Colors