Random Color Generator

#b57f2e Color

Color Codes
Hex Code #b57f2e
RGB Code rgb(181, 127, 46)
HSL Code hsl(36, 59%, 45%)

#b57f2e Color Syntax

rgb()

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

 main {
    background-color: rgb(181, 127, 46);
   }

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, 59%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(181, 127, 46, 10%) #b57f2e1a  
rgb(181, 127, 46, 20%) #b57f2e33  
rgb(181, 127, 46, 40%) #b57f2e4C  
rgb(181, 127, 46, 60%) #b57f2e99  
rgb(181, 127, 46, 80%) #b57f2eCC  
rgb(181, 127, 46, 100%) #b57f2eFF  

Saturated and desaturated colors of #b57f2e

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

#b57f2e Color Usage In CSS

 body {
    color: #b57f2e;
    }
 p {
    color: rgb(181, 127, 46);
    }
 header {
    border-bottom:1px solid #b57f2e;
    }
Recent Random Colors