Random Color Generator

#70a111 Color

Color Codes
Hex Code #70a111
RGB Code rgb(112, 161, 17)
HSL Code hsl(80, 81%, 35%)

#70a111 Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 161, 17);
   }

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(80, 81%, 35%);
  }

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

RGB Code Hex Code Preview
rgb(112, 161, 17, 10%) #70a1111a  
rgb(112, 161, 17, 20%) #70a11133  
rgb(112, 161, 17, 40%) #70a1114C  
rgb(112, 161, 17, 60%) #70a11199  
rgb(112, 161, 17, 80%) #70a111CC  
rgb(112, 161, 17, 100%) #70a111FF  

Saturated and desaturated colors of #70a111

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

#70a111 Color Usage In CSS

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