Random Color Generator

#ae2918 Color

Color Codes
Hex Code #ae2918
RGB Code rgb(174, 41, 24)
HSL Code hsl(7, 76%, 39%)

#ae2918 Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 41, 24);
   }

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(7, 76%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(174, 41, 24, 10%) #ae29181a  
rgb(174, 41, 24, 20%) #ae291833  
rgb(174, 41, 24, 40%) #ae29184C  
rgb(174, 41, 24, 60%) #ae291899  
rgb(174, 41, 24, 80%) #ae2918CC  
rgb(174, 41, 24, 100%) #ae2918FF  

Saturated and desaturated colors of #ae2918

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

#ae2918 Color Usage In CSS

 body {
    color: #ae2918;
    }
 p {
    color: rgb(174, 41, 24);
    }
 header {
    border-bottom:1px solid #ae2918;
    }
Recent Random Colors