Random Color Generator

#a05a2b Color

Color Codes
Hex Code #a05a2b
RGB Code rgb(160, 90, 43)
HSL Code hsl(24, 58%, 40%)

#a05a2b Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 90, 43);
   }

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(24, 58%, 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 #a05a2b

RGB Code Hex Code Preview
rgb(160, 90, 43, 10%) #a05a2b1a  
rgb(160, 90, 43, 20%) #a05a2b33  
rgb(160, 90, 43, 40%) #a05a2b4C  
rgb(160, 90, 43, 60%) #a05a2b99  
rgb(160, 90, 43, 80%) #a05a2bCC  
rgb(160, 90, 43, 100%) #a05a2bFF  

Saturated and desaturated colors of #a05a2b

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

#a05a2b Color Usage In CSS

 body {
    color: #a05a2b;
    }
 p {
    color: rgb(160, 90, 43);
    }
 header {
    border-bottom:1px solid #a05a2b;
    }
Recent Random Colors