Random Color Generator

#48d232 Color

Color Codes
Hex Code #48d232
RGB Code rgb(72, 210, 50)
HSL Code hsl(112, 64%, 51%)

#48d232 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 210, 50);
   }

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(112, 64%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(72, 210, 50, 10%) #48d2321a  
rgb(72, 210, 50, 20%) #48d23233  
rgb(72, 210, 50, 40%) #48d2324C  
rgb(72, 210, 50, 60%) #48d23299  
rgb(72, 210, 50, 80%) #48d232CC  
rgb(72, 210, 50, 100%) #48d232FF  

Saturated and desaturated colors of #48d232

HSL Code Preview
hsl(112, 10%, 51%)  
hsl(112, 20%, 51%)  
hsl(112, 40%, 51%)  
hsl(112, 60%, 51%)  
hsl(112, 80%, 51%)  
hsl(112, 100%, 51%)  

#48d232 Color Usage In CSS

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