Random Color Generator

#b18d07 Color

Color Codes
Hex Code #b18d07
RGB Code rgb(177, 141, 07)
HSL Code hsl(47, 92%, 36%)

#b18d07 Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 141, 07);
   }

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(47, 92%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(177, 141, 07, 10%) #b18d071a  
rgb(177, 141, 07, 20%) #b18d0733  
rgb(177, 141, 07, 40%) #b18d074C  
rgb(177, 141, 07, 60%) #b18d0799  
rgb(177, 141, 07, 80%) #b18d07CC  
rgb(177, 141, 07, 100%) #b18d07FF  

Saturated and desaturated colors of #b18d07

HSL Code Preview
hsl(47, 10%, 36%)  
hsl(47, 20%, 36%)  
hsl(47, 40%, 36%)  
hsl(47, 60%, 36%)  
hsl(47, 80%, 36%)  
hsl(47, 100%, 36%)  

#b18d07 Color Usage In CSS

 body {
    color: #b18d07;
    }
 p {
    color: rgb(177, 141, 07);
    }
 header {
    border-bottom:1px solid #b18d07;
    }
Recent Random Colors