Random Color Generator

#b08d26 Color

Color Codes
Hex Code #b08d26
RGB Code rgb(176, 141, 38)
HSL Code hsl(45, 64%, 42%)

#b08d26 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 141, 38);
   }

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(45, 64%, 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 #b08d26

RGB Code Hex Code Preview
rgb(176, 141, 38, 10%) #b08d261a  
rgb(176, 141, 38, 20%) #b08d2633  
rgb(176, 141, 38, 40%) #b08d264C  
rgb(176, 141, 38, 60%) #b08d2699  
rgb(176, 141, 38, 80%) #b08d26CC  
rgb(176, 141, 38, 100%) #b08d26FF  

Saturated and desaturated colors of #b08d26

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

#b08d26 Color Usage In CSS

 body {
    color: #b08d26;
    }
 p {
    color: rgb(176, 141, 38);
    }
 header {
    border-bottom:1px solid #b08d26;
    }
Recent Random Colors