Random Color Generator

#84fead Color

Color Codes
Hex Code #84fead
RGB Code rgb(132, 254, 173)
HSL Code hsl(140, 98%, 76%)

#84fead Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 254, 173);
   }

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(140, 98%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(132, 254, 173, 10%) #84fead1a  
rgb(132, 254, 173, 20%) #84fead33  
rgb(132, 254, 173, 40%) #84fead4C  
rgb(132, 254, 173, 60%) #84fead99  
rgb(132, 254, 173, 80%) #84feadCC  
rgb(132, 254, 173, 100%) #84feadFF  

Saturated and desaturated colors of #84fead

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

#84fead Color Usage In CSS

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