Random Color Generator

#b49382 Color

Color Codes
Hex Code #b49382
RGB Code rgb(180, 147, 130)
HSL Code hsl(20, 25%, 61%)

#b49382 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 147, 130);
   }

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(20, 25%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(180, 147, 130, 10%) #b493821a  
rgb(180, 147, 130, 20%) #b4938233  
rgb(180, 147, 130, 40%) #b493824C  
rgb(180, 147, 130, 60%) #b4938299  
rgb(180, 147, 130, 80%) #b49382CC  
rgb(180, 147, 130, 100%) #b49382FF  

Saturated and desaturated colors of #b49382

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

#b49382 Color Usage In CSS

 body {
    color: #b49382;
    }
 p {
    color: rgb(180, 147, 130);
    }
 header {
    border-bottom:1px solid #b49382;
    }
Recent Random Colors