Random Color Generator

#a47c89 Color

Color Codes
Hex Code #a47c89
RGB Code rgb(164, 124, 137)
HSL Code hsl(341, 18%, 56%)

#a47c89 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 124, 137);
   }

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(341, 18%, 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 #a47c89

RGB Code Hex Code Preview
rgb(164, 124, 137, 10%) #a47c891a  
rgb(164, 124, 137, 20%) #a47c8933  
rgb(164, 124, 137, 40%) #a47c894C  
rgb(164, 124, 137, 60%) #a47c8999  
rgb(164, 124, 137, 80%) #a47c89CC  
rgb(164, 124, 137, 100%) #a47c89FF  

Saturated and desaturated colors of #a47c89

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

#a47c89 Color Usage In CSS

 body {
    color: #a47c89;
    }
 p {
    color: rgb(164, 124, 137);
    }
 header {
    border-bottom:1px solid #a47c89;
    }
Recent Random Colors