Random Color Generator

#70c35f Color

Color Codes
Hex Code #70c35f
RGB Code rgb(112, 195, 95)
HSL Code hsl(110, 45%, 57%)

#70c35f Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 195, 95);
   }

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(110, 45%, 57%);
  }

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 #70c35f

RGB Code Hex Code Preview
rgb(112, 195, 95, 10%) #70c35f1a  
rgb(112, 195, 95, 20%) #70c35f33  
rgb(112, 195, 95, 40%) #70c35f4C  
rgb(112, 195, 95, 60%) #70c35f99  
rgb(112, 195, 95, 80%) #70c35fCC  
rgb(112, 195, 95, 100%) #70c35fFF  

Saturated and desaturated colors of #70c35f

HSL Code Preview
hsl(110, 10%, 57%)  
hsl(110, 20%, 57%)  
hsl(110, 40%, 57%)  
hsl(110, 60%, 57%)  
hsl(110, 80%, 57%)  
hsl(110, 100%, 57%)  

#70c35f Color Usage In CSS

 body {
    color: #70c35f;
    }
 p {
    color: rgb(112, 195, 95);
    }
 header {
    border-bottom:1px solid #70c35f;
    }
Recent Random Colors