Random Color Generator

#a1820d Color

Color Codes
Hex Code #a1820d
RGB Code rgb(161, 130, 13)
HSL Code hsl(47, 85%, 34%)

#a1820d Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 130, 13);
   }

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, 85%, 34%);
  }

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

RGB Code Hex Code Preview
rgb(161, 130, 13, 10%) #a1820d1a  
rgb(161, 130, 13, 20%) #a1820d33  
rgb(161, 130, 13, 40%) #a1820d4C  
rgb(161, 130, 13, 60%) #a1820d99  
rgb(161, 130, 13, 80%) #a1820dCC  
rgb(161, 130, 13, 100%) #a1820dFF  

Saturated and desaturated colors of #a1820d

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

#a1820d Color Usage In CSS

 body {
    color: #a1820d;
    }
 p {
    color: rgb(161, 130, 13);
    }
 header {
    border-bottom:1px solid #a1820d;
    }
Recent Random Colors