Random Color Generator

#b97c25 Color

Color Codes
Hex Code #b97c25
RGB Code rgb(185, 124, 37)
HSL Code hsl(35, 67%, 44%)

#b97c25 Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 124, 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(35, 67%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(185, 124, 37, 10%) #b97c251a  
rgb(185, 124, 37, 20%) #b97c2533  
rgb(185, 124, 37, 40%) #b97c254C  
rgb(185, 124, 37, 60%) #b97c2599  
rgb(185, 124, 37, 80%) #b97c25CC  
rgb(185, 124, 37, 100%) #b97c25FF  

Saturated and desaturated colors of #b97c25

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

#b97c25 Color Usage In CSS

 body {
    color: #b97c25;
    }
 p {
    color: rgb(185, 124, 37);
    }
 header {
    border-bottom:1px solid #b97c25;
    }
Recent Random Colors