Random Color Generator

#ccca4e Color

Color Codes
Hex Code #ccca4e
RGB Code rgb(204, 202, 78)
HSL Code hsl(59, 55%, 55%)

#ccca4e Color Syntax

rgb()

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

 main {
    background-color: rgb(204, 202, 78);
   }

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(59, 55%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(204, 202, 78, 10%) #ccca4e1a  
rgb(204, 202, 78, 20%) #ccca4e33  
rgb(204, 202, 78, 40%) #ccca4e4C  
rgb(204, 202, 78, 60%) #ccca4e99  
rgb(204, 202, 78, 80%) #ccca4eCC  
rgb(204, 202, 78, 100%) #ccca4eFF  

Saturated and desaturated colors of #ccca4e

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

#ccca4e Color Usage In CSS

 body {
    color: #ccca4e;
    }
 p {
    color: rgb(204, 202, 78);
    }
 header {
    border-bottom:1px solid #ccca4e;
    }
Recent Random Colors