Random Color Generator

#0cc75e Color

Color Codes
Hex Code #0cc75e
RGB Code rgb(12, 199, 94)
HSL Code hsl(146, 89%, 41%)

#0cc75e Color Syntax

rgb()

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

 main {
    background-color: rgb(12, 199, 94);
   }

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(146, 89%, 41%);
  }

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 #0cc75e

RGB Code Hex Code Preview
rgb(12, 199, 94, 10%) #0cc75e1a  
rgb(12, 199, 94, 20%) #0cc75e33  
rgb(12, 199, 94, 40%) #0cc75e4C  
rgb(12, 199, 94, 60%) #0cc75e99  
rgb(12, 199, 94, 80%) #0cc75eCC  
rgb(12, 199, 94, 100%) #0cc75eFF  

Saturated and desaturated colors of #0cc75e

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

#0cc75e Color Usage In CSS

 body {
    color: #0cc75e;
    }
 p {
    color: rgb(12, 199, 94);
    }
 header {
    border-bottom:1px solid #0cc75e;
    }
Recent Random Colors