Random Color Generator

#84f999 Color

Color Codes
Hex Code #84f999
RGB Code rgb(132, 249, 153)
HSL Code hsl(131, 91%, 75%)

#84f999 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 249, 153);
   }

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(131, 91%, 75%);
  }

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 #84f999

RGB Code Hex Code Preview
rgb(132, 249, 153, 10%) #84f9991a  
rgb(132, 249, 153, 20%) #84f99933  
rgb(132, 249, 153, 40%) #84f9994C  
rgb(132, 249, 153, 60%) #84f99999  
rgb(132, 249, 153, 80%) #84f999CC  
rgb(132, 249, 153, 100%) #84f999FF  

Saturated and desaturated colors of #84f999

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

#84f999 Color Usage In CSS

 body {
    color: #84f999;
    }
 p {
    color: rgb(132, 249, 153);
    }
 header {
    border-bottom:1px solid #84f999;
    }
Recent Random Colors