Random Color Generator

#cddf41 Color

Color Codes
Hex Code #cddf41
RGB Code rgb(205, 223, 65)
HSL Code hsl(67, 71%, 56%)

#cddf41 Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 223, 65);
   }

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(67, 71%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(205, 223, 65, 10%) #cddf411a  
rgb(205, 223, 65, 20%) #cddf4133  
rgb(205, 223, 65, 40%) #cddf414C  
rgb(205, 223, 65, 60%) #cddf4199  
rgb(205, 223, 65, 80%) #cddf41CC  
rgb(205, 223, 65, 100%) #cddf41FF  

Saturated and desaturated colors of #cddf41

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

#cddf41 Color Usage In CSS

 body {
    color: #cddf41;
    }
 p {
    color: rgb(205, 223, 65);
    }
 header {
    border-bottom:1px solid #cddf41;
    }
Recent Random Colors