Random Color Generator

#b97109 Color

Color Codes
Hex Code #b97109
RGB Code rgb(185, 113, 09)
HSL Code hsl(35, 91%, 38%)

#b97109 Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 113, 09);
   }

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(35, 91%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(185, 113, 09, 10%) #b971091a  
rgb(185, 113, 09, 20%) #b9710933  
rgb(185, 113, 09, 40%) #b971094C  
rgb(185, 113, 09, 60%) #b9710999  
rgb(185, 113, 09, 80%) #b97109CC  
rgb(185, 113, 09, 100%) #b97109FF  

Saturated and desaturated colors of #b97109

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

#b97109 Color Usage In CSS

 body {
    color: #b97109;
    }
 p {
    color: rgb(185, 113, 09);
    }
 header {
    border-bottom:1px solid #b97109;
    }
Recent Random Colors