Random Color Generator

#c9a574 Color

Color Codes
Hex Code #c9a574
RGB Code rgb(201, 165, 116)
HSL Code hsl(35, 44%, 62%)

#c9a574 Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 165, 116);
   }

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(35, 44%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(201, 165, 116, 10%) #c9a5741a  
rgb(201, 165, 116, 20%) #c9a57433  
rgb(201, 165, 116, 40%) #c9a5744C  
rgb(201, 165, 116, 60%) #c9a57499  
rgb(201, 165, 116, 80%) #c9a574CC  
rgb(201, 165, 116, 100%) #c9a574FF  

Saturated and desaturated colors of #c9a574

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

#c9a574 Color Usage In CSS

 body {
    color: #c9a574;
    }
 p {
    color: rgb(201, 165, 116);
    }
 header {
    border-bottom:1px solid #c9a574;
    }
Recent Random Colors