Random Color Generator

#a38c61 Color

Color Codes
Hex Code #a38c61
RGB Code rgb(163, 140, 97)
HSL Code hsl(39, 26%, 51%)

#a38c61 Color Syntax

rgb()

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

 main {
    background-color: rgb(163, 140, 97);
   }

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(39, 26%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(163, 140, 97, 10%) #a38c611a  
rgb(163, 140, 97, 20%) #a38c6133  
rgb(163, 140, 97, 40%) #a38c614C  
rgb(163, 140, 97, 60%) #a38c6199  
rgb(163, 140, 97, 80%) #a38c61CC  
rgb(163, 140, 97, 100%) #a38c61FF  

Saturated and desaturated colors of #a38c61

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

#a38c61 Color Usage In CSS

 body {
    color: #a38c61;
    }
 p {
    color: rgb(163, 140, 97);
    }
 header {
    border-bottom:1px solid #a38c61;
    }
Recent Random Colors