Random Color Generator

#6edbcd Color

Color Codes
Hex Code #6edbcd
RGB Code rgb(110, 219, 205)
HSL Code hsl(172, 60%, 65%)

#6edbcd Color Syntax

rgb()

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

 main {
    background-color: rgb(110, 219, 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(172, 60%, 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 #6edbcd

RGB Code Hex Code Preview
rgb(110, 219, 205, 10%) #6edbcd1a  
rgb(110, 219, 205, 20%) #6edbcd33  
rgb(110, 219, 205, 40%) #6edbcd4C  
rgb(110, 219, 205, 60%) #6edbcd99  
rgb(110, 219, 205, 80%) #6edbcdCC  
rgb(110, 219, 205, 100%) #6edbcdFF  

Saturated and desaturated colors of #6edbcd

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

#6edbcd Color Usage In CSS

 body {
    color: #6edbcd;
    }
 p {
    color: rgb(110, 219, 205);
    }
 header {
    border-bottom:1px solid #6edbcd;
    }
Recent Random Colors