Random Color Generator

#b46007 Color

Color Codes
Hex Code #b46007
RGB Code rgb(180, 96, 07)
HSL Code hsl(31, 93%, 37%)

#b46007 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 96, 07);
   }

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, 93%, 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 #b46007

RGB Code Hex Code Preview
rgb(180, 96, 07, 10%) #b460071a  
rgb(180, 96, 07, 20%) #b4600733  
rgb(180, 96, 07, 40%) #b460074C  
rgb(180, 96, 07, 60%) #b4600799  
rgb(180, 96, 07, 80%) #b46007CC  
rgb(180, 96, 07, 100%) #b46007FF  

Saturated and desaturated colors of #b46007

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

#b46007 Color Usage In CSS

 body {
    color: #b46007;
    }
 p {
    color: rgb(180, 96, 07);
    }
 header {
    border-bottom:1px solid #b46007;
    }
Recent Random Colors