Random Color Generator

#c9cf06 Color

Color Codes
Hex Code #c9cf06
RGB Code rgb(201, 207, 06)
HSL Code hsl(62, 94%, 42%)

#c9cf06 Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 207, 06);
   }

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(62, 94%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(201, 207, 06, 10%) #c9cf061a  
rgb(201, 207, 06, 20%) #c9cf0633  
rgb(201, 207, 06, 40%) #c9cf064C  
rgb(201, 207, 06, 60%) #c9cf0699  
rgb(201, 207, 06, 80%) #c9cf06CC  
rgb(201, 207, 06, 100%) #c9cf06FF  

Saturated and desaturated colors of #c9cf06

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

#c9cf06 Color Usage In CSS

 body {
    color: #c9cf06;
    }
 p {
    color: rgb(201, 207, 06);
    }
 header {
    border-bottom:1px solid #c9cf06;
    }
Recent Random Colors