Random Color Generator

#7cf2de Color

Color Codes
Hex Code #7cf2de
RGB Code rgb(124, 242, 222)
HSL Code hsl(170, 82%, 72%)

#7cf2de Color Syntax

rgb()

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

 main {
    background-color: rgb(124, 242, 222);
   }

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(170, 82%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(124, 242, 222, 10%) #7cf2de1a  
rgb(124, 242, 222, 20%) #7cf2de33  
rgb(124, 242, 222, 40%) #7cf2de4C  
rgb(124, 242, 222, 60%) #7cf2de99  
rgb(124, 242, 222, 80%) #7cf2deCC  
rgb(124, 242, 222, 100%) #7cf2deFF  

Saturated and desaturated colors of #7cf2de

HSL Code Preview
hsl(170, 10%, 72%)  
hsl(170, 20%, 72%)  
hsl(170, 40%, 72%)  
hsl(170, 60%, 72%)  
hsl(170, 80%, 72%)  
hsl(170, 100%, 72%)  

#7cf2de Color Usage In CSS

 body {
    color: #7cf2de;
    }
 p {
    color: rgb(124, 242, 222);
    }
 header {
    border-bottom:1px solid #7cf2de;
    }
Recent Random Colors