Random Color Generator

#a8bd67 Color

Color Codes
Hex Code #a8bd67
RGB Code rgb(168, 189, 103)
HSL Code hsl(75, 39%, 57%)

#a8bd67 Color Syntax

rgb()

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

 main {
    background-color: rgb(168, 189, 103);
   }

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(75, 39%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(168, 189, 103, 10%) #a8bd671a  
rgb(168, 189, 103, 20%) #a8bd6733  
rgb(168, 189, 103, 40%) #a8bd674C  
rgb(168, 189, 103, 60%) #a8bd6799  
rgb(168, 189, 103, 80%) #a8bd67CC  
rgb(168, 189, 103, 100%) #a8bd67FF  

Saturated and desaturated colors of #a8bd67

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

#a8bd67 Color Usage In CSS

 body {
    color: #a8bd67;
    }
 p {
    color: rgb(168, 189, 103);
    }
 header {
    border-bottom:1px solid #a8bd67;
    }
Recent Random Colors