Random Color Generator

#48f116 Color

Color Codes
Hex Code #48f116
RGB Code rgb(72, 241, 22)
HSL Code hsl(106, 89%, 52%)

#48f116 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 241, 22);
   }

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(106, 89%, 52%);
  }

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 #48f116

RGB Code Hex Code Preview
rgb(72, 241, 22, 10%) #48f1161a  
rgb(72, 241, 22, 20%) #48f11633  
rgb(72, 241, 22, 40%) #48f1164C  
rgb(72, 241, 22, 60%) #48f11699  
rgb(72, 241, 22, 80%) #48f116CC  
rgb(72, 241, 22, 100%) #48f116FF  

Saturated and desaturated colors of #48f116

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

#48f116 Color Usage In CSS

 body {
    color: #48f116;
    }
 p {
    color: rgb(72, 241, 22);
    }
 header {
    border-bottom:1px solid #48f116;
    }
Recent Random Colors