Random Color Generator

#3cd684 Color

Color Codes
Hex Code #3cd684
RGB Code rgb(60, 214, 132)
HSL Code hsl(148, 65%, 54%)

#3cd684 Color Syntax

rgb()

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

 main {
    background-color: rgb(60, 214, 132);
   }

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(148, 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 #3cd684

RGB Code Hex Code Preview
rgb(60, 214, 132, 10%) #3cd6841a  
rgb(60, 214, 132, 20%) #3cd68433  
rgb(60, 214, 132, 40%) #3cd6844C  
rgb(60, 214, 132, 60%) #3cd68499  
rgb(60, 214, 132, 80%) #3cd684CC  
rgb(60, 214, 132, 100%) #3cd684FF  

Saturated and desaturated colors of #3cd684

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

#3cd684 Color Usage In CSS

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