Random Color Generator

#ced060 Color

Color Codes
Hex Code #ced060
RGB Code rgb(206, 208, 96)
HSL Code hsl(61, 54%, 60%)

#ced060 Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 208, 96);
   }

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(61, 54%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(206, 208, 96, 10%) #ced0601a  
rgb(206, 208, 96, 20%) #ced06033  
rgb(206, 208, 96, 40%) #ced0604C  
rgb(206, 208, 96, 60%) #ced06099  
rgb(206, 208, 96, 80%) #ced060CC  
rgb(206, 208, 96, 100%) #ced060FF  

Saturated and desaturated colors of #ced060

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

#ced060 Color Usage In CSS

 body {
    color: #ced060;
    }
 p {
    color: rgb(206, 208, 96);
    }
 header {
    border-bottom:1px solid #ced060;
    }
Recent Random Colors