Random Color Generator

#a15e51 Color

Color Codes
Hex Code #a15e51
RGB Code rgb(161, 94, 81)
HSL Code hsl(10, 33%, 47%)

#a15e51 Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 94, 81);
   }

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(10, 33%, 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 #a15e51

RGB Code Hex Code Preview
rgb(161, 94, 81, 10%) #a15e511a  
rgb(161, 94, 81, 20%) #a15e5133  
rgb(161, 94, 81, 40%) #a15e514C  
rgb(161, 94, 81, 60%) #a15e5199  
rgb(161, 94, 81, 80%) #a15e51CC  
rgb(161, 94, 81, 100%) #a15e51FF  

Saturated and desaturated colors of #a15e51

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

#a15e51 Color Usage In CSS

 body {
    color: #a15e51;
    }
 p {
    color: rgb(161, 94, 81);
    }
 header {
    border-bottom:1px solid #a15e51;
    }
Recent Random Colors