Random Color Generator

#c1e246 Color

Color Codes
Hex Code #c1e246
RGB Code rgb(193, 226, 70)
HSL Code hsl(73, 73%, 58%)

#c1e246 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 226, 70);
   }

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(73, 73%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(193, 226, 70, 10%) #c1e2461a  
rgb(193, 226, 70, 20%) #c1e24633  
rgb(193, 226, 70, 40%) #c1e2464C  
rgb(193, 226, 70, 60%) #c1e24699  
rgb(193, 226, 70, 80%) #c1e246CC  
rgb(193, 226, 70, 100%) #c1e246FF  

Saturated and desaturated colors of #c1e246

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

#c1e246 Color Usage In CSS

 body {
    color: #c1e246;
    }
 p {
    color: rgb(193, 226, 70);
    }
 header {
    border-bottom:1px solid #c1e246;
    }
Recent Random Colors