Random Color Generator

#48b64e Color

Color Codes
Hex Code #48b64e
RGB Code rgb(72, 182, 78)
HSL Code hsl(123, 43%, 50%)

#48b64e Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 182, 78);
   }

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(123, 43%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(72, 182, 78, 10%) #48b64e1a  
rgb(72, 182, 78, 20%) #48b64e33  
rgb(72, 182, 78, 40%) #48b64e4C  
rgb(72, 182, 78, 60%) #48b64e99  
rgb(72, 182, 78, 80%) #48b64eCC  
rgb(72, 182, 78, 100%) #48b64eFF  

Saturated and desaturated colors of #48b64e

HSL Code Preview
hsl(123, 10%, 50%)  
hsl(123, 20%, 50%)  
hsl(123, 40%, 50%)  
hsl(123, 60%, 50%)  
hsl(123, 80%, 50%)  
hsl(123, 100%, 50%)  

#48b64e Color Usage In CSS

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