Random Color Generator

#48c829 Color

Color Codes
Hex Code #48c829
RGB Code rgb(72, 200, 41)
HSL Code hsl(108, 66%, 47%)

#48c829 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 200, 41);
   }

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(108, 66%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(72, 200, 41, 10%) #48c8291a  
rgb(72, 200, 41, 20%) #48c82933  
rgb(72, 200, 41, 40%) #48c8294C  
rgb(72, 200, 41, 60%) #48c82999  
rgb(72, 200, 41, 80%) #48c829CC  
rgb(72, 200, 41, 100%) #48c829FF  

Saturated and desaturated colors of #48c829

HSL Code Preview
hsl(108, 10%, 47%)  
hsl(108, 20%, 47%)  
hsl(108, 40%, 47%)  
hsl(108, 60%, 47%)  
hsl(108, 80%, 47%)  
hsl(108, 100%, 47%)  

#48c829 Color Usage In CSS

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