Random Color Generator

#46b152 Color

Color Codes
Hex Code #46b152
RGB Code rgb(70, 177, 82)
HSL Code hsl(127, 43%, 48%)

#46b152 Color Syntax

rgb()

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

 main {
    background-color: rgb(70, 177, 82);
   }

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(127, 43%, 48%);
  }

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 #46b152

RGB Code Hex Code Preview
rgb(70, 177, 82, 10%) #46b1521a  
rgb(70, 177, 82, 20%) #46b15233  
rgb(70, 177, 82, 40%) #46b1524C  
rgb(70, 177, 82, 60%) #46b15299  
rgb(70, 177, 82, 80%) #46b152CC  
rgb(70, 177, 82, 100%) #46b152FF  

Saturated and desaturated colors of #46b152

HSL Code Preview
hsl(127, 10%, 48%)  
hsl(127, 20%, 48%)  
hsl(127, 40%, 48%)  
hsl(127, 60%, 48%)  
hsl(127, 80%, 48%)  
hsl(127, 100%, 48%)  

#46b152 Color Usage In CSS

 body {
    color: #46b152;
    }
 p {
    color: rgb(70, 177, 82);
    }
 header {
    border-bottom:1px solid #46b152;
    }
Recent Random Colors