Random Color Generator

#72d9ae Color

Color Codes
Hex Code #72d9ae
RGB Code rgb(114, 217, 174)
HSL Code hsl(155, 58%, 65%)

#72d9ae Color Syntax

rgb()

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

 main {
    background-color: rgb(114, 217, 174);
   }

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(155, 58%, 65%);
  }

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 #72d9ae

RGB Code Hex Code Preview
rgb(114, 217, 174, 10%) #72d9ae1a  
rgb(114, 217, 174, 20%) #72d9ae33  
rgb(114, 217, 174, 40%) #72d9ae4C  
rgb(114, 217, 174, 60%) #72d9ae99  
rgb(114, 217, 174, 80%) #72d9aeCC  
rgb(114, 217, 174, 100%) #72d9aeFF  

Saturated and desaturated colors of #72d9ae

HSL Code Preview
hsl(155, 10%, 65%)  
hsl(155, 20%, 65%)  
hsl(155, 40%, 65%)  
hsl(155, 60%, 65%)  
hsl(155, 80%, 65%)  
hsl(155, 100%, 65%)  

#72d9ae Color Usage In CSS

 body {
    color: #72d9ae;
    }
 p {
    color: rgb(114, 217, 174);
    }
 header {
    border-bottom:1px solid #72d9ae;
    }
Recent Random Colors