Random Color Generator

#a47926 Color

Color Codes
Hex Code #a47926
RGB Code rgb(164, 121, 38)
HSL Code hsl(40, 62%, 40%)

#a47926 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 121, 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(40, 62%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(164, 121, 38, 10%) #a479261a  
rgb(164, 121, 38, 20%) #a4792633  
rgb(164, 121, 38, 40%) #a479264C  
rgb(164, 121, 38, 60%) #a4792699  
rgb(164, 121, 38, 80%) #a47926CC  
rgb(164, 121, 38, 100%) #a47926FF  

Saturated and desaturated colors of #a47926

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

#a47926 Color Usage In CSS

 body {
    color: #a47926;
    }
 p {
    color: rgb(164, 121, 38);
    }
 header {
    border-bottom:1px solid #a47926;
    }
Recent Random Colors