Random Color Generator

#83f70e Color

Color Codes
Hex Code #83f70e
RGB Code rgb(131, 247, 14)
HSL Code hsl(90, 94%, 51%)

#83f70e Color Syntax

rgb()

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

 main {
    background-color: rgb(131, 247, 14);
   }

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, 94%, 51%);
  }

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 #83f70e

RGB Code Hex Code Preview
rgb(131, 247, 14, 10%) #83f70e1a  
rgb(131, 247, 14, 20%) #83f70e33  
rgb(131, 247, 14, 40%) #83f70e4C  
rgb(131, 247, 14, 60%) #83f70e99  
rgb(131, 247, 14, 80%) #83f70eCC  
rgb(131, 247, 14, 100%) #83f70eFF  

Saturated and desaturated colors of #83f70e

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

#83f70e Color Usage In CSS

 body {
    color: #83f70e;
    }
 p {
    color: rgb(131, 247, 14);
    }
 header {
    border-bottom:1px solid #83f70e;
    }
Recent Random Colors