Random Color Generator

#c1f364 Color

Color Codes
Hex Code #c1f364
RGB Code rgb(193, 243, 100)
HSL Code hsl(81, 86%, 67%)

#c1f364 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 243, 100);
   }

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(81, 86%, 67%);
  }

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

RGB Code Hex Code Preview
rgb(193, 243, 100, 10%) #c1f3641a  
rgb(193, 243, 100, 20%) #c1f36433  
rgb(193, 243, 100, 40%) #c1f3644C  
rgb(193, 243, 100, 60%) #c1f36499  
rgb(193, 243, 100, 80%) #c1f364CC  
rgb(193, 243, 100, 100%) #c1f364FF  

Saturated and desaturated colors of #c1f364

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

#c1f364 Color Usage In CSS

 body {
    color: #c1f364;
    }
 p {
    color: rgb(193, 243, 100);
    }
 header {
    border-bottom:1px solid #c1f364;
    }
Recent Random Colors