Random Color Generator

#a0865c Color

Color Codes
Hex Code #a0865c
RGB Code rgb(160, 134, 92)
HSL Code hsl(37, 27%, 49%)

#a0865c Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 134, 92);
   }

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

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

RGB Code Hex Code Preview
rgb(160, 134, 92, 10%) #a0865c1a  
rgb(160, 134, 92, 20%) #a0865c33  
rgb(160, 134, 92, 40%) #a0865c4C  
rgb(160, 134, 92, 60%) #a0865c99  
rgb(160, 134, 92, 80%) #a0865cCC  
rgb(160, 134, 92, 100%) #a0865cFF  

Saturated and desaturated colors of #a0865c

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

#a0865c Color Usage In CSS

 body {
    color: #a0865c;
    }
 p {
    color: rgb(160, 134, 92);
    }
 header {
    border-bottom:1px solid #a0865c;
    }
Recent Random Colors