Random Color Generator

#b79425 Color

Color Codes
Hex Code #b79425
RGB Code rgb(183, 148, 37)
HSL Code hsl(46, 66%, 43%)

#b79425 Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 148, 37);
   }

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(46, 66%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(183, 148, 37, 10%) #b794251a  
rgb(183, 148, 37, 20%) #b7942533  
rgb(183, 148, 37, 40%) #b794254C  
rgb(183, 148, 37, 60%) #b7942599  
rgb(183, 148, 37, 80%) #b79425CC  
rgb(183, 148, 37, 100%) #b79425FF  

Saturated and desaturated colors of #b79425

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

#b79425 Color Usage In CSS

 body {
    color: #b79425;
    }
 p {
    color: rgb(183, 148, 37);
    }
 header {
    border-bottom:1px solid #b79425;
    }
Recent Random Colors