Random Color Generator

#a32804 Color

Color Codes
Hex Code #a32804
RGB Code rgb(163, 40, 04)
HSL Code hsl(14, 95%, 33%)

#a32804 Color Syntax

rgb()

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

 main {
    background-color: rgb(163, 40, 04);
   }

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(14, 95%, 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 #a32804

RGB Code Hex Code Preview
rgb(163, 40, 04, 10%) #a328041a  
rgb(163, 40, 04, 20%) #a3280433  
rgb(163, 40, 04, 40%) #a328044C  
rgb(163, 40, 04, 60%) #a3280499  
rgb(163, 40, 04, 80%) #a32804CC  
rgb(163, 40, 04, 100%) #a32804FF  

Saturated and desaturated colors of #a32804

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

#a32804 Color Usage In CSS

 body {
    color: #a32804;
    }
 p {
    color: rgb(163, 40, 04);
    }
 header {
    border-bottom:1px solid #a32804;
    }
Recent Random Colors