Random Color Generator

#c9a678 Color

Color Codes
Hex Code #c9a678
RGB Code rgb(201, 166, 120)
HSL Code hsl(34, 43%, 63%)

#c9a678 Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 166, 120);
   }

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(34, 43%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(201, 166, 120, 10%) #c9a6781a  
rgb(201, 166, 120, 20%) #c9a67833  
rgb(201, 166, 120, 40%) #c9a6784C  
rgb(201, 166, 120, 60%) #c9a67899  
rgb(201, 166, 120, 80%) #c9a678CC  
rgb(201, 166, 120, 100%) #c9a678FF  

Saturated and desaturated colors of #c9a678

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

#c9a678 Color Usage In CSS

 body {
    color: #c9a678;
    }
 p {
    color: rgb(201, 166, 120);
    }
 header {
    border-bottom:1px solid #c9a678;
    }
Recent Random Colors