Random Color Generator

#a2534c Color

Color Codes
Hex Code #a2534c
RGB Code rgb(162, 83, 76)
HSL Code hsl(5, 36%, 47%)

#a2534c Color Syntax

rgb()

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

 main {
    background-color: rgb(162, 83, 76);
   }

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(5, 36%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(162, 83, 76, 10%) #a2534c1a  
rgb(162, 83, 76, 20%) #a2534c33  
rgb(162, 83, 76, 40%) #a2534c4C  
rgb(162, 83, 76, 60%) #a2534c99  
rgb(162, 83, 76, 80%) #a2534cCC  
rgb(162, 83, 76, 100%) #a2534cFF  

Saturated and desaturated colors of #a2534c

HSL Code Preview
hsl(5, 10%, 47%)  
hsl(5, 20%, 47%)  
hsl(5, 40%, 47%)  
hsl(5, 60%, 47%)  
hsl(5, 80%, 47%)  
hsl(5, 100%, 47%)  

#a2534c Color Usage In CSS

 body {
    color: #a2534c;
    }
 p {
    color: rgb(162, 83, 76);
    }
 header {
    border-bottom:1px solid #a2534c;
    }
Recent Random Colors