Random Color Generator

#3bd651 Color

Color Codes
Hex Code #3bd651
RGB Code rgb(59, 214, 81)
HSL Code hsl(129, 65%, 54%)

#3bd651 Color Syntax

rgb()

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

 main {
    background-color: rgb(59, 214, 81);
   }

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(129, 65%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(59, 214, 81, 10%) #3bd6511a  
rgb(59, 214, 81, 20%) #3bd65133  
rgb(59, 214, 81, 40%) #3bd6514C  
rgb(59, 214, 81, 60%) #3bd65199  
rgb(59, 214, 81, 80%) #3bd651CC  
rgb(59, 214, 81, 100%) #3bd651FF  

Saturated and desaturated colors of #3bd651

HSL Code Preview
hsl(129, 10%, 54%)  
hsl(129, 20%, 54%)  
hsl(129, 40%, 54%)  
hsl(129, 60%, 54%)  
hsl(129, 80%, 54%)  
hsl(129, 100%, 54%)  

#3bd651 Color Usage In CSS

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