Random Color Generator

#a8ad82 Color

Color Codes
Hex Code #a8ad82
RGB Code rgb(168, 173, 130)
HSL Code hsl(67, 21%, 59%)

#a8ad82 Color Syntax

rgb()

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

 main {
    background-color: rgb(168, 173, 130);
   }

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(67, 21%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(168, 173, 130, 10%) #a8ad821a  
rgb(168, 173, 130, 20%) #a8ad8233  
rgb(168, 173, 130, 40%) #a8ad824C  
rgb(168, 173, 130, 60%) #a8ad8299  
rgb(168, 173, 130, 80%) #a8ad82CC  
rgb(168, 173, 130, 100%) #a8ad82FF  

Saturated and desaturated colors of #a8ad82

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

#a8ad82 Color Usage In CSS

 body {
    color: #a8ad82;
    }
 p {
    color: rgb(168, 173, 130);
    }
 header {
    border-bottom:1px solid #a8ad82;
    }
Recent Random Colors