Random Color Generator

#cefe36 Color

Color Codes
Hex Code #cefe36
RGB Code rgb(206, 254, 54)
HSL Code hsl(74, 99%, 60%)

#cefe36 Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 254, 54);
   }

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(74, 99%, 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 #cefe36

RGB Code Hex Code Preview
rgb(206, 254, 54, 10%) #cefe361a  
rgb(206, 254, 54, 20%) #cefe3633  
rgb(206, 254, 54, 40%) #cefe364C  
rgb(206, 254, 54, 60%) #cefe3699  
rgb(206, 254, 54, 80%) #cefe36CC  
rgb(206, 254, 54, 100%) #cefe36FF  

Saturated and desaturated colors of #cefe36

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

#cefe36 Color Usage In CSS

 body {
    color: #cefe36;
    }
 p {
    color: rgb(206, 254, 54);
    }
 header {
    border-bottom:1px solid #cefe36;
    }
Recent Random Colors