Random Color Generator

#a48127 Color

Color Codes
Hex Code #a48127
RGB Code rgb(164, 129, 39)
HSL Code hsl(43, 62%, 40%)

#a48127 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 129, 39);
   }

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(43, 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 #a48127

RGB Code Hex Code Preview
rgb(164, 129, 39, 10%) #a481271a  
rgb(164, 129, 39, 20%) #a4812733  
rgb(164, 129, 39, 40%) #a481274C  
rgb(164, 129, 39, 60%) #a4812799  
rgb(164, 129, 39, 80%) #a48127CC  
rgb(164, 129, 39, 100%) #a48127FF  

Saturated and desaturated colors of #a48127

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

#a48127 Color Usage In CSS

 body {
    color: #a48127;
    }
 p {
    color: rgb(164, 129, 39);
    }
 header {
    border-bottom:1px solid #a48127;
    }
Recent Random Colors