Random Color Generator

#b8780c Color

Color Codes
Hex Code #b8780c
RGB Code rgb(184, 120, 12)
HSL Code hsl(38, 88%, 38%)

#b8780c Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 120, 12);
   }

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, 88%, 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 #b8780c

RGB Code Hex Code Preview
rgb(184, 120, 12, 10%) #b8780c1a  
rgb(184, 120, 12, 20%) #b8780c33  
rgb(184, 120, 12, 40%) #b8780c4C  
rgb(184, 120, 12, 60%) #b8780c99  
rgb(184, 120, 12, 80%) #b8780cCC  
rgb(184, 120, 12, 100%) #b8780cFF  

Saturated and desaturated colors of #b8780c

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

#b8780c Color Usage In CSS

 body {
    color: #b8780c;
    }
 p {
    color: rgb(184, 120, 12);
    }
 header {
    border-bottom:1px solid #b8780c;
    }
Recent Random Colors