Random Color Generator

#76cffb Color

Color Codes
Hex Code #76cffb
RGB Code rgb(118, 207, 251)
HSL Code hsl(200, 94%, 72%)

#76cffb Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 207, 251);
   }

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(200, 94%, 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 #76cffb

RGB Code Hex Code Preview
rgb(118, 207, 251, 10%) #76cffb1a  
rgb(118, 207, 251, 20%) #76cffb33  
rgb(118, 207, 251, 40%) #76cffb4C  
rgb(118, 207, 251, 60%) #76cffb99  
rgb(118, 207, 251, 80%) #76cffbCC  
rgb(118, 207, 251, 100%) #76cffbFF  

Saturated and desaturated colors of #76cffb

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

#76cffb Color Usage In CSS

 body {
    color: #76cffb;
    }
 p {
    color: rgb(118, 207, 251);
    }
 header {
    border-bottom:1px solid #76cffb;
    }
Recent Random Colors