Random Color Generator

#70db03 Color

Color Codes
Hex Code #70db03
RGB Code rgb(112, 219, 03)
HSL Code hsl(90, 97%, 44%)

#70db03 Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 219, 03);
   }

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(90, 97%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(112, 219, 03, 10%) #70db031a  
rgb(112, 219, 03, 20%) #70db0333  
rgb(112, 219, 03, 40%) #70db034C  
rgb(112, 219, 03, 60%) #70db0399  
rgb(112, 219, 03, 80%) #70db03CC  
rgb(112, 219, 03, 100%) #70db03FF  

Saturated and desaturated colors of #70db03

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

#70db03 Color Usage In CSS

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