Random Color Generator

#a2955e Color

Color Codes
Hex Code #a2955e
RGB Code rgb(162, 149, 94)
HSL Code hsl(49, 27%, 50%)

#a2955e Color Syntax

rgb()

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

 main {
    background-color: rgb(162, 149, 94);
   }

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(49, 27%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(162, 149, 94, 10%) #a2955e1a  
rgb(162, 149, 94, 20%) #a2955e33  
rgb(162, 149, 94, 40%) #a2955e4C  
rgb(162, 149, 94, 60%) #a2955e99  
rgb(162, 149, 94, 80%) #a2955eCC  
rgb(162, 149, 94, 100%) #a2955eFF  

Saturated and desaturated colors of #a2955e

HSL Code Preview
hsl(49, 10%, 50%)  
hsl(49, 20%, 50%)  
hsl(49, 40%, 50%)  
hsl(49, 60%, 50%)  
hsl(49, 80%, 50%)  
hsl(49, 100%, 50%)  

#a2955e Color Usage In CSS

 body {
    color: #a2955e;
    }
 p {
    color: rgb(162, 149, 94);
    }
 header {
    border-bottom:1px solid #a2955e;
    }
Recent Random Colors