Random Color Generator

#70f796 Color

Color Codes
Hex Code #70f796
RGB Code rgb(112, 247, 150)
HSL Code hsl(137, 89%, 70%)

#70f796 Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 247, 150);
   }

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(137, 89%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(112, 247, 150, 10%) #70f7961a  
rgb(112, 247, 150, 20%) #70f79633  
rgb(112, 247, 150, 40%) #70f7964C  
rgb(112, 247, 150, 60%) #70f79699  
rgb(112, 247, 150, 80%) #70f796CC  
rgb(112, 247, 150, 100%) #70f796FF  

Saturated and desaturated colors of #70f796

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

#70f796 Color Usage In CSS

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