Random Color Generator

#02f48a Color

Color Codes
Hex Code #02f48a
RGB Code rgb(02, 244, 138)
HSL Code hsl(154, 98%, 48%)

#02f48a Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 244, 138);
   }

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(154, 98%, 48%);
  }

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 #02f48a

RGB Code Hex Code Preview
rgb(02, 244, 138, 10%) #02f48a1a  
rgb(02, 244, 138, 20%) #02f48a33  
rgb(02, 244, 138, 40%) #02f48a4C  
rgb(02, 244, 138, 60%) #02f48a99  
rgb(02, 244, 138, 80%) #02f48aCC  
rgb(02, 244, 138, 100%) #02f48aFF  

Saturated and desaturated colors of #02f48a

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

#02f48a Color Usage In CSS

 body {
    color: #02f48a;
    }
 p {
    color: rgb(02, 244, 138);
    }
 header {
    border-bottom:1px solid #02f48a;
    }
Recent Random Colors