Random Color Generator

#48e77f Color

Color Codes
Hex Code #48e77f
RGB Code rgb(72, 231, 127)
HSL Code hsl(141, 77%, 59%)

#48e77f Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 231, 127);
   }

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(141, 77%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(72, 231, 127, 10%) #48e77f1a  
rgb(72, 231, 127, 20%) #48e77f33  
rgb(72, 231, 127, 40%) #48e77f4C  
rgb(72, 231, 127, 60%) #48e77f99  
rgb(72, 231, 127, 80%) #48e77fCC  
rgb(72, 231, 127, 100%) #48e77fFF  

Saturated and desaturated colors of #48e77f

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

#48e77f Color Usage In CSS

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