Random Color Generator

#7ad7cd Color

Color Codes
Hex Code #7ad7cd
RGB Code rgb(122, 215, 205)
HSL Code hsl(174, 54%, 66%)

#7ad7cd Color Syntax

rgb()

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

 main {
    background-color: rgb(122, 215, 205);
   }

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(174, 54%, 66%);
  }

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 #7ad7cd

RGB Code Hex Code Preview
rgb(122, 215, 205, 10%) #7ad7cd1a  
rgb(122, 215, 205, 20%) #7ad7cd33  
rgb(122, 215, 205, 40%) #7ad7cd4C  
rgb(122, 215, 205, 60%) #7ad7cd99  
rgb(122, 215, 205, 80%) #7ad7cdCC  
rgb(122, 215, 205, 100%) #7ad7cdFF  

Saturated and desaturated colors of #7ad7cd

HSL Code Preview
hsl(174, 10%, 66%)  
hsl(174, 20%, 66%)  
hsl(174, 40%, 66%)  
hsl(174, 60%, 66%)  
hsl(174, 80%, 66%)  
hsl(174, 100%, 66%)  

#7ad7cd Color Usage In CSS

 body {
    color: #7ad7cd;
    }
 p {
    color: rgb(122, 215, 205);
    }
 header {
    border-bottom:1px solid #7ad7cd;
    }
Recent Random Colors