Random Color Generator

#3def6a Color

Color Codes
Hex Code #3def6a
RGB Code rgb(61, 239, 106)
HSL Code hsl(135, 85%, 59%)

#3def6a Color Syntax

rgb()

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

 main {
    background-color: rgb(61, 239, 106);
   }

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(135, 85%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(61, 239, 106, 10%) #3def6a1a  
rgb(61, 239, 106, 20%) #3def6a33  
rgb(61, 239, 106, 40%) #3def6a4C  
rgb(61, 239, 106, 60%) #3def6a99  
rgb(61, 239, 106, 80%) #3def6aCC  
rgb(61, 239, 106, 100%) #3def6aFF  

Saturated and desaturated colors of #3def6a

HSL Code Preview
hsl(135, 10%, 59%)  
hsl(135, 20%, 59%)  
hsl(135, 40%, 59%)  
hsl(135, 60%, 59%)  
hsl(135, 80%, 59%)  
hsl(135, 100%, 59%)  

#3def6a Color Usage In CSS

 body {
    color: #3def6a;
    }
 p {
    color: rgb(61, 239, 106);
    }
 header {
    border-bottom:1px solid #3def6a;
    }
Recent Random Colors