Random Color Generator

#ae0e0b Color

Color Codes
Hex Code #ae0e0b
RGB Code rgb(174, 14, 11)
HSL Code hsl(1, 88%, 36%)

#ae0e0b Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 14, 11);
   }

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(1, 88%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(174, 14, 11, 10%) #ae0e0b1a  
rgb(174, 14, 11, 20%) #ae0e0b33  
rgb(174, 14, 11, 40%) #ae0e0b4C  
rgb(174, 14, 11, 60%) #ae0e0b99  
rgb(174, 14, 11, 80%) #ae0e0bCC  
rgb(174, 14, 11, 100%) #ae0e0bFF  

Saturated and desaturated colors of #ae0e0b

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

#ae0e0b Color Usage In CSS

 body {
    color: #ae0e0b;
    }
 p {
    color: rgb(174, 14, 11);
    }
 header {
    border-bottom:1px solid #ae0e0b;
    }
Recent Random Colors