Random Color Generator

#a61a09 Color

Color Codes
Hex Code #a61a09
RGB Code rgb(166, 26, 09)
HSL Code hsl(6, 90%, 34%)

#a61a09 Color Syntax

rgb()

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

 main {
    background-color: rgb(166, 26, 09);
   }

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(6, 90%, 34%);
  }

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

RGB Code Hex Code Preview
rgb(166, 26, 09, 10%) #a61a091a  
rgb(166, 26, 09, 20%) #a61a0933  
rgb(166, 26, 09, 40%) #a61a094C  
rgb(166, 26, 09, 60%) #a61a0999  
rgb(166, 26, 09, 80%) #a61a09CC  
rgb(166, 26, 09, 100%) #a61a09FF  

Saturated and desaturated colors of #a61a09

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

#a61a09 Color Usage In CSS

 body {
    color: #a61a09;
    }
 p {
    color: rgb(166, 26, 09);
    }
 header {
    border-bottom:1px solid #a61a09;
    }
Recent Random Colors