Random Color Generator

#36d070 Color

Color Codes
Hex Code #36d070
RGB Code rgb(54, 208, 112)
HSL Code hsl(143, 62%, 51%)

#36d070 Color Syntax

rgb()

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

 main {
    background-color: rgb(54, 208, 112);
   }

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(143, 62%, 51%);
  }

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 #36d070

RGB Code Hex Code Preview
rgb(54, 208, 112, 10%) #36d0701a  
rgb(54, 208, 112, 20%) #36d07033  
rgb(54, 208, 112, 40%) #36d0704C  
rgb(54, 208, 112, 60%) #36d07099  
rgb(54, 208, 112, 80%) #36d070CC  
rgb(54, 208, 112, 100%) #36d070FF  

Saturated and desaturated colors of #36d070

HSL Code Preview
hsl(143, 10%, 51%)  
hsl(143, 20%, 51%)  
hsl(143, 40%, 51%)  
hsl(143, 60%, 51%)  
hsl(143, 80%, 51%)  
hsl(143, 100%, 51%)  

#36d070 Color Usage In CSS

 body {
    color: #36d070;
    }
 p {
    color: rgb(54, 208, 112);
    }
 header {
    border-bottom:1px solid #36d070;
    }
Recent Random Colors