Random Color Generator

#a06d36 Color

Color Codes
Hex Code #a06d36
RGB Code rgb(160, 109, 54)
HSL Code hsl(31, 50%, 42%)

#a06d36 Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 109, 54);
   }

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(31, 50%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(160, 109, 54, 10%) #a06d361a  
rgb(160, 109, 54, 20%) #a06d3633  
rgb(160, 109, 54, 40%) #a06d364C  
rgb(160, 109, 54, 60%) #a06d3699  
rgb(160, 109, 54, 80%) #a06d36CC  
rgb(160, 109, 54, 100%) #a06d36FF  

Saturated and desaturated colors of #a06d36

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

#a06d36 Color Usage In CSS

 body {
    color: #a06d36;
    }
 p {
    color: rgb(160, 109, 54);
    }
 header {
    border-bottom:1px solid #a06d36;
    }
Recent Random Colors