Random Color Generator

#a46402 Color

Color Codes
Hex Code #a46402
RGB Code rgb(164, 100, 02)
HSL Code hsl(36, 98%, 33%)

#a46402 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 100, 02);
   }

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(36, 98%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(164, 100, 02, 10%) #a464021a  
rgb(164, 100, 02, 20%) #a4640233  
rgb(164, 100, 02, 40%) #a464024C  
rgb(164, 100, 02, 60%) #a4640299  
rgb(164, 100, 02, 80%) #a46402CC  
rgb(164, 100, 02, 100%) #a46402FF  

Saturated and desaturated colors of #a46402

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

#a46402 Color Usage In CSS

 body {
    color: #a46402;
    }
 p {
    color: rgb(164, 100, 02);
    }
 header {
    border-bottom:1px solid #a46402;
    }
Recent Random Colors