Random Color Generator

#b07d25 Color

Color Codes
Hex Code #b07d25
RGB Code rgb(176, 125, 37)
HSL Code hsl(38, 65%, 42%)

#b07d25 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 125, 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(38, 65%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(176, 125, 37, 10%) #b07d251a  
rgb(176, 125, 37, 20%) #b07d2533  
rgb(176, 125, 37, 40%) #b07d254C  
rgb(176, 125, 37, 60%) #b07d2599  
rgb(176, 125, 37, 80%) #b07d25CC  
rgb(176, 125, 37, 100%) #b07d25FF  

Saturated and desaturated colors of #b07d25

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

#b07d25 Color Usage In CSS

 body {
    color: #b07d25;
    }
 p {
    color: rgb(176, 125, 37);
    }
 header {
    border-bottom:1px solid #b07d25;
    }
Recent Random Colors