Random Color Generator

#9cf170 Color

Color Codes
Hex Code #9cf170
RGB Code rgb(156, 241, 112)
HSL Code hsl(100, 82%, 69%)

#9cf170 Color Syntax

rgb()

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

 main {
    background-color: rgb(156, 241, 112);
   }

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(100, 82%, 69%);
  }

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 #9cf170

RGB Code Hex Code Preview
rgb(156, 241, 112, 10%) #9cf1701a  
rgb(156, 241, 112, 20%) #9cf17033  
rgb(156, 241, 112, 40%) #9cf1704C  
rgb(156, 241, 112, 60%) #9cf17099  
rgb(156, 241, 112, 80%) #9cf170CC  
rgb(156, 241, 112, 100%) #9cf170FF  

Saturated and desaturated colors of #9cf170

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

#9cf170 Color Usage In CSS

 body {
    color: #9cf170;
    }
 p {
    color: rgb(156, 241, 112);
    }
 header {
    border-bottom:1px solid #9cf170;
    }
Recent Random Colors