Random Color Generator

#b2b11e Color

Color Codes
Hex Code #b2b11e
RGB Code rgb(178, 177, 30)
HSL Code hsl(60, 71%, 41%)

#b2b11e Color Syntax

rgb()

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

 main {
    background-color: rgb(178, 177, 30);
   }

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(60, 71%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(178, 177, 30, 10%) #b2b11e1a  
rgb(178, 177, 30, 20%) #b2b11e33  
rgb(178, 177, 30, 40%) #b2b11e4C  
rgb(178, 177, 30, 60%) #b2b11e99  
rgb(178, 177, 30, 80%) #b2b11eCC  
rgb(178, 177, 30, 100%) #b2b11eFF  

Saturated and desaturated colors of #b2b11e

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

#b2b11e Color Usage In CSS

 body {
    color: #b2b11e;
    }
 p {
    color: rgb(178, 177, 30);
    }
 header {
    border-bottom:1px solid #b2b11e;
    }
Recent Random Colors