Random Color Generator

#c6ed1c Color

Color Codes
Hex Code #c6ed1c
RGB Code rgb(198, 237, 28)
HSL Code hsl(71, 85%, 52%)

#c6ed1c Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 237, 28);
   }

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(71, 85%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(198, 237, 28, 10%) #c6ed1c1a  
rgb(198, 237, 28, 20%) #c6ed1c33  
rgb(198, 237, 28, 40%) #c6ed1c4C  
rgb(198, 237, 28, 60%) #c6ed1c99  
rgb(198, 237, 28, 80%) #c6ed1cCC  
rgb(198, 237, 28, 100%) #c6ed1cFF  

Saturated and desaturated colors of #c6ed1c

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

#c6ed1c Color Usage In CSS

 body {
    color: #c6ed1c;
    }
 p {
    color: rgb(198, 237, 28);
    }
 header {
    border-bottom:1px solid #c6ed1c;
    }
Recent Random Colors