Random Color Generator

#b78a3a Color

Color Codes
Hex Code #b78a3a
RGB Code rgb(183, 138, 58)
HSL Code hsl(38, 52%, 47%)

#b78a3a Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 138, 58);
   }

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, 52%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(183, 138, 58, 10%) #b78a3a1a  
rgb(183, 138, 58, 20%) #b78a3a33  
rgb(183, 138, 58, 40%) #b78a3a4C  
rgb(183, 138, 58, 60%) #b78a3a99  
rgb(183, 138, 58, 80%) #b78a3aCC  
rgb(183, 138, 58, 100%) #b78a3aFF  

Saturated and desaturated colors of #b78a3a

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

#b78a3a Color Usage In CSS

 body {
    color: #b78a3a;
    }
 p {
    color: rgb(183, 138, 58);
    }
 header {
    border-bottom:1px solid #b78a3a;
    }
Recent Random Colors