Random Color Generator

#b64b0e Color

Color Codes
Hex Code #b64b0e
RGB Code rgb(182, 75, 14)
HSL Code hsl(22, 86%, 38%)

#b64b0e Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 75, 14);
   }

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(22, 86%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(182, 75, 14, 10%) #b64b0e1a  
rgb(182, 75, 14, 20%) #b64b0e33  
rgb(182, 75, 14, 40%) #b64b0e4C  
rgb(182, 75, 14, 60%) #b64b0e99  
rgb(182, 75, 14, 80%) #b64b0eCC  
rgb(182, 75, 14, 100%) #b64b0eFF  

Saturated and desaturated colors of #b64b0e

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

#b64b0e Color Usage In CSS

 body {
    color: #b64b0e;
    }
 p {
    color: rgb(182, 75, 14);
    }
 header {
    border-bottom:1px solid #b64b0e;
    }
Recent Random Colors