Random Color Generator

#ac133e Color

Color Codes
Hex Code #ac133e
RGB Code rgb(172, 19, 62)
HSL Code hsl(343, 80%, 37%)

#ac133e Color Syntax

rgb()

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

 main {
    background-color: rgb(172, 19, 62);
   }

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(343, 80%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(172, 19, 62, 10%) #ac133e1a  
rgb(172, 19, 62, 20%) #ac133e33  
rgb(172, 19, 62, 40%) #ac133e4C  
rgb(172, 19, 62, 60%) #ac133e99  
rgb(172, 19, 62, 80%) #ac133eCC  
rgb(172, 19, 62, 100%) #ac133eFF  

Saturated and desaturated colors of #ac133e

HSL Code Preview
hsl(343, 10%, 37%)  
hsl(343, 20%, 37%)  
hsl(343, 40%, 37%)  
hsl(343, 60%, 37%)  
hsl(343, 80%, 37%)  
hsl(343, 100%, 37%)  

#ac133e Color Usage In CSS

 body {
    color: #ac133e;
    }
 p {
    color: rgb(172, 19, 62);
    }
 header {
    border-bottom:1px solid #ac133e;
    }
Recent Random Colors