Random Color Generator

#ac7481 Color

Color Codes
Hex Code #ac7481
RGB Code rgb(172, 116, 129)
HSL Code hsl(346, 25%, 56%)

#ac7481 Color Syntax

rgb()

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

 main {
    background-color: rgb(172, 116, 129);
   }

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(346, 25%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(172, 116, 129, 10%) #ac74811a  
rgb(172, 116, 129, 20%) #ac748133  
rgb(172, 116, 129, 40%) #ac74814C  
rgb(172, 116, 129, 60%) #ac748199  
rgb(172, 116, 129, 80%) #ac7481CC  
rgb(172, 116, 129, 100%) #ac7481FF  

Saturated and desaturated colors of #ac7481

HSL Code Preview
hsl(346, 10%, 56%)  
hsl(346, 20%, 56%)  
hsl(346, 40%, 56%)  
hsl(346, 60%, 56%)  
hsl(346, 80%, 56%)  
hsl(346, 100%, 56%)  

#ac7481 Color Usage In CSS

 body {
    color: #ac7481;
    }
 p {
    color: rgb(172, 116, 129);
    }
 header {
    border-bottom:1px solid #ac7481;
    }
Recent Random Colors