Random Color Generator

#84e1d0 Color

Color Codes
Hex Code #84e1d0
RGB Code rgb(132, 225, 208)
HSL Code hsl(169, 61%, 70%)

#84e1d0 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 225, 208);
   }

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(169, 61%, 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 #84e1d0

RGB Code Hex Code Preview
rgb(132, 225, 208, 10%) #84e1d01a  
rgb(132, 225, 208, 20%) #84e1d033  
rgb(132, 225, 208, 40%) #84e1d04C  
rgb(132, 225, 208, 60%) #84e1d099  
rgb(132, 225, 208, 80%) #84e1d0CC  
rgb(132, 225, 208, 100%) #84e1d0FF  

Saturated and desaturated colors of #84e1d0

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

#84e1d0 Color Usage In CSS

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