Random Color Generator

#7dc4d6 Color

Color Codes
Hex Code #7dc4d6
RGB Code rgb(125, 196, 214)
HSL Code hsl(192, 52%, 66%)

#7dc4d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 196, 214);
   }

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(192, 52%, 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 #7dc4d6

RGB Code Hex Code Preview
rgb(125, 196, 214, 10%) #7dc4d61a  
rgb(125, 196, 214, 20%) #7dc4d633  
rgb(125, 196, 214, 40%) #7dc4d64C  
rgb(125, 196, 214, 60%) #7dc4d699  
rgb(125, 196, 214, 80%) #7dc4d6CC  
rgb(125, 196, 214, 100%) #7dc4d6FF  

Saturated and desaturated colors of #7dc4d6

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

#7dc4d6 Color Usage In CSS

 body {
    color: #7dc4d6;
    }
 p {
    color: rgb(125, 196, 214);
    }
 header {
    border-bottom:1px solid #7dc4d6;
    }
Recent Random Colors