Random Color Generator

#b37e47 Color

Color Codes
Hex Code #b37e47
RGB Code rgb(179, 126, 71)
HSL Code hsl(31, 43%, 49%)

#b37e47 Color Syntax

rgb()

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

 main {
    background-color: rgb(179, 126, 71);
   }

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(31, 43%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(179, 126, 71, 10%) #b37e471a  
rgb(179, 126, 71, 20%) #b37e4733  
rgb(179, 126, 71, 40%) #b37e474C  
rgb(179, 126, 71, 60%) #b37e4799  
rgb(179, 126, 71, 80%) #b37e47CC  
rgb(179, 126, 71, 100%) #b37e47FF  

Saturated and desaturated colors of #b37e47

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

#b37e47 Color Usage In CSS

 body {
    color: #b37e47;
    }
 p {
    color: rgb(179, 126, 71);
    }
 header {
    border-bottom:1px solid #b37e47;
    }
Recent Random Colors