Random Color Generator

#3bcd48 Color

Color Codes
Hex Code #3bcd48
RGB Code rgb(59, 205, 72)
HSL Code hsl(125, 59%, 52%)

#3bcd48 Color Syntax

rgb()

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

 main {
    background-color: rgb(59, 205, 72);
   }

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(125, 59%, 52%);
  }

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 #3bcd48

RGB Code Hex Code Preview
rgb(59, 205, 72, 10%) #3bcd481a  
rgb(59, 205, 72, 20%) #3bcd4833  
rgb(59, 205, 72, 40%) #3bcd484C  
rgb(59, 205, 72, 60%) #3bcd4899  
rgb(59, 205, 72, 80%) #3bcd48CC  
rgb(59, 205, 72, 100%) #3bcd48FF  

Saturated and desaturated colors of #3bcd48

HSL Code Preview
hsl(125, 10%, 52%)  
hsl(125, 20%, 52%)  
hsl(125, 40%, 52%)  
hsl(125, 60%, 52%)  
hsl(125, 80%, 52%)  
hsl(125, 100%, 52%)  

#3bcd48 Color Usage In CSS

 body {
    color: #3bcd48;
    }
 p {
    color: rgb(59, 205, 72);
    }
 header {
    border-bottom:1px solid #3bcd48;
    }
Recent Random Colors