Random Color Generator

#02cd50 Color

Color Codes
Hex Code #02cd50
RGB Code rgb(02, 205, 80)
HSL Code hsl(143, 98%, 41%)

#02cd50 Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 205, 80);
   }

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(143, 98%, 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 #02cd50

RGB Code Hex Code Preview
rgb(02, 205, 80, 10%) #02cd501a  
rgb(02, 205, 80, 20%) #02cd5033  
rgb(02, 205, 80, 40%) #02cd504C  
rgb(02, 205, 80, 60%) #02cd5099  
rgb(02, 205, 80, 80%) #02cd50CC  
rgb(02, 205, 80, 100%) #02cd50FF  

Saturated and desaturated colors of #02cd50

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

#02cd50 Color Usage In CSS

 body {
    color: #02cd50;
    }
 p {
    color: rgb(02, 205, 80);
    }
 header {
    border-bottom:1px solid #02cd50;
    }
Recent Random Colors