Random Color Generator

#ae2523 Color

Color Codes
Hex Code #ae2523
RGB Code rgb(174, 37, 35)
HSL Code hsl(1, 67%, 41%)

#ae2523 Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 37, 35);
   }

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, 67%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(174, 37, 35, 10%) #ae25231a  
rgb(174, 37, 35, 20%) #ae252333  
rgb(174, 37, 35, 40%) #ae25234C  
rgb(174, 37, 35, 60%) #ae252399  
rgb(174, 37, 35, 80%) #ae2523CC  
rgb(174, 37, 35, 100%) #ae2523FF  

Saturated and desaturated colors of #ae2523

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

#ae2523 Color Usage In CSS

 body {
    color: #ae2523;
    }
 p {
    color: rgb(174, 37, 35);
    }
 header {
    border-bottom:1px solid #ae2523;
    }
Recent Random Colors