Random Color Generator

#b7b20e Color

Color Codes
Hex Code #b7b20e
RGB Code rgb(183, 178, 14)
HSL Code hsl(58, 86%, 39%)

#b7b20e Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 178, 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(58, 86%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(183, 178, 14, 10%) #b7b20e1a  
rgb(183, 178, 14, 20%) #b7b20e33  
rgb(183, 178, 14, 40%) #b7b20e4C  
rgb(183, 178, 14, 60%) #b7b20e99  
rgb(183, 178, 14, 80%) #b7b20eCC  
rgb(183, 178, 14, 100%) #b7b20eFF  

Saturated and desaturated colors of #b7b20e

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

#b7b20e Color Usage In CSS

 body {
    color: #b7b20e;
    }
 p {
    color: rgb(183, 178, 14);
    }
 header {
    border-bottom:1px solid #b7b20e;
    }
Recent Random Colors