Random Color Generator

#7dbedd Color

Color Codes
Hex Code #7dbedd
RGB Code rgb(125, 190, 221)
HSL Code hsl(199, 59%, 68%)

#7dbedd Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 190, 221);
   }

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(199, 59%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(125, 190, 221, 10%) #7dbedd1a  
rgb(125, 190, 221, 20%) #7dbedd33  
rgb(125, 190, 221, 40%) #7dbedd4C  
rgb(125, 190, 221, 60%) #7dbedd99  
rgb(125, 190, 221, 80%) #7dbeddCC  
rgb(125, 190, 221, 100%) #7dbeddFF  

Saturated and desaturated colors of #7dbedd

HSL Code Preview
hsl(199, 10%, 68%)  
hsl(199, 20%, 68%)  
hsl(199, 40%, 68%)  
hsl(199, 60%, 68%)  
hsl(199, 80%, 68%)  
hsl(199, 100%, 68%)  

#7dbedd Color Usage In CSS

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