Random Color Generator

#b67705 Color

Color Codes
Hex Code #b67705
RGB Code rgb(182, 119, 05)
HSL Code hsl(39, 95%, 37%)

#b67705 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 119, 05);
   }

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(39, 95%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(182, 119, 05, 10%) #b677051a  
rgb(182, 119, 05, 20%) #b6770533  
rgb(182, 119, 05, 40%) #b677054C  
rgb(182, 119, 05, 60%) #b6770599  
rgb(182, 119, 05, 80%) #b67705CC  
rgb(182, 119, 05, 100%) #b67705FF  

Saturated and desaturated colors of #b67705

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

#b67705 Color Usage In CSS

 body {
    color: #b67705;
    }
 p {
    color: rgb(182, 119, 05);
    }
 header {
    border-bottom:1px solid #b67705;
    }
Recent Random Colors