Random Color Generator

#a56322 Color

Color Codes
Hex Code #a56322
RGB Code rgb(165, 99, 34)
HSL Code hsl(30, 66%, 39%)

#a56322 Color Syntax

rgb()

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

 main {
    background-color: rgb(165, 99, 34);
   }

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(30, 66%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(165, 99, 34, 10%) #a563221a  
rgb(165, 99, 34, 20%) #a5632233  
rgb(165, 99, 34, 40%) #a563224C  
rgb(165, 99, 34, 60%) #a5632299  
rgb(165, 99, 34, 80%) #a56322CC  
rgb(165, 99, 34, 100%) #a56322FF  

Saturated and desaturated colors of #a56322

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

#a56322 Color Usage In CSS

 body {
    color: #a56322;
    }
 p {
    color: rgb(165, 99, 34);
    }
 header {
    border-bottom:1px solid #a56322;
    }
Recent Random Colors