Random Color Generator

#a13602 Color

Color Codes
Hex Code #a13602
RGB Code rgb(161, 54, 02)
HSL Code hsl(20, 98%, 32%)

#a13602 Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 54, 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(20, 98%, 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 #a13602

RGB Code Hex Code Preview
rgb(161, 54, 02, 10%) #a136021a  
rgb(161, 54, 02, 20%) #a1360233  
rgb(161, 54, 02, 40%) #a136024C  
rgb(161, 54, 02, 60%) #a1360299  
rgb(161, 54, 02, 80%) #a13602CC  
rgb(161, 54, 02, 100%) #a13602FF  

Saturated and desaturated colors of #a13602

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

#a13602 Color Usage In CSS

 body {
    color: #a13602;
    }
 p {
    color: rgb(161, 54, 02);
    }
 header {
    border-bottom:1px solid #a13602;
    }
Recent Random Colors