Random Color Generator

#c9a999 Color

Color Codes
Hex Code #c9a999
RGB Code rgb(201, 169, 153)
HSL Code hsl(20, 31%, 69%)

#c9a999 Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 169, 153);
   }

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(20, 31%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(201, 169, 153, 10%) #c9a9991a  
rgb(201, 169, 153, 20%) #c9a99933  
rgb(201, 169, 153, 40%) #c9a9994C  
rgb(201, 169, 153, 60%) #c9a99999  
rgb(201, 169, 153, 80%) #c9a999CC  
rgb(201, 169, 153, 100%) #c9a999FF  

Saturated and desaturated colors of #c9a999

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

#c9a999 Color Usage In CSS

 body {
    color: #c9a999;
    }
 p {
    color: rgb(201, 169, 153);
    }
 header {
    border-bottom:1px solid #c9a999;
    }
Recent Random Colors