Random Color Generator

#a05501 Color

Color Codes
Hex Code #a05501
RGB Code rgb(160, 85, 01)
HSL Code hsl(32, 99%, 32%)

#a05501 Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 85, 01);
   }

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(32, 99%, 32%);
  }

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

RGB Code Hex Code Preview
rgb(160, 85, 01, 10%) #a055011a  
rgb(160, 85, 01, 20%) #a0550133  
rgb(160, 85, 01, 40%) #a055014C  
rgb(160, 85, 01, 60%) #a0550199  
rgb(160, 85, 01, 80%) #a05501CC  
rgb(160, 85, 01, 100%) #a05501FF  

Saturated and desaturated colors of #a05501

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

#a05501 Color Usage In CSS

 body {
    color: #a05501;
    }
 p {
    color: rgb(160, 85, 01);
    }
 header {
    border-bottom:1px solid #a05501;
    }
Recent Random Colors