Random Color Generator

#71d3f0 Color

Color Codes
Hex Code #71d3f0
RGB Code rgb(113, 211, 240)
HSL Code hsl(194, 81%, 69%)

#71d3f0 Color Syntax

rgb()

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

 main {
    background-color: rgb(113, 211, 240);
   }

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(194, 81%, 69%);
  }

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 #71d3f0

RGB Code Hex Code Preview
rgb(113, 211, 240, 10%) #71d3f01a  
rgb(113, 211, 240, 20%) #71d3f033  
rgb(113, 211, 240, 40%) #71d3f04C  
rgb(113, 211, 240, 60%) #71d3f099  
rgb(113, 211, 240, 80%) #71d3f0CC  
rgb(113, 211, 240, 100%) #71d3f0FF  

Saturated and desaturated colors of #71d3f0

HSL Code Preview
hsl(194, 10%, 69%)  
hsl(194, 20%, 69%)  
hsl(194, 40%, 69%)  
hsl(194, 60%, 69%)  
hsl(194, 80%, 69%)  
hsl(194, 100%, 69%)  

#71d3f0 Color Usage In CSS

 body {
    color: #71d3f0;
    }
 p {
    color: rgb(113, 211, 240);
    }
 header {
    border-bottom:1px solid #71d3f0;
    }
Recent Random Colors