Random Color Generator

#35c76b Color

Color Codes
Hex Code #35c76b
RGB Code rgb(53, 199, 107)
HSL Code hsl(142, 58%, 49%)

#35c76b Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 199, 107);
   }

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(142, 58%, 49%);
  }

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 #35c76b

RGB Code Hex Code Preview
rgb(53, 199, 107, 10%) #35c76b1a  
rgb(53, 199, 107, 20%) #35c76b33  
rgb(53, 199, 107, 40%) #35c76b4C  
rgb(53, 199, 107, 60%) #35c76b99  
rgb(53, 199, 107, 80%) #35c76bCC  
rgb(53, 199, 107, 100%) #35c76bFF  

Saturated and desaturated colors of #35c76b

HSL Code Preview
hsl(142, 10%, 49%)  
hsl(142, 20%, 49%)  
hsl(142, 40%, 49%)  
hsl(142, 60%, 49%)  
hsl(142, 80%, 49%)  
hsl(142, 100%, 49%)  

#35c76b Color Usage In CSS

 body {
    color: #35c76b;
    }
 p {
    color: rgb(53, 199, 107);
    }
 header {
    border-bottom:1px solid #35c76b;
    }
Recent Random Colors