Random Color Generator

#7cc6fd Color

Color Codes
Hex Code #7cc6fd
RGB Code rgb(124, 198, 253)
HSL Code hsl(206, 97%, 74%)

#7cc6fd Color Syntax

rgb()

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

 main {
    background-color: rgb(124, 198, 253);
   }

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(206, 97%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(124, 198, 253, 10%) #7cc6fd1a  
rgb(124, 198, 253, 20%) #7cc6fd33  
rgb(124, 198, 253, 40%) #7cc6fd4C  
rgb(124, 198, 253, 60%) #7cc6fd99  
rgb(124, 198, 253, 80%) #7cc6fdCC  
rgb(124, 198, 253, 100%) #7cc6fdFF  

Saturated and desaturated colors of #7cc6fd

HSL Code Preview
hsl(206, 10%, 74%)  
hsl(206, 20%, 74%)  
hsl(206, 40%, 74%)  
hsl(206, 60%, 74%)  
hsl(206, 80%, 74%)  
hsl(206, 100%, 74%)  

#7cc6fd Color Usage In CSS

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