Random Color Generator

#16caf1 Color

Color Codes
Hex Code #16caf1
RGB Code rgb(22, 202, 241)
HSL Code hsl(191, 89%, 52%)

#16caf1 Color Syntax

rgb()

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

 main {
    background-color: rgb(22, 202, 241);
   }

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(191, 89%, 52%);
  }

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 #16caf1

RGB Code Hex Code Preview
rgb(22, 202, 241, 10%) #16caf11a  
rgb(22, 202, 241, 20%) #16caf133  
rgb(22, 202, 241, 40%) #16caf14C  
rgb(22, 202, 241, 60%) #16caf199  
rgb(22, 202, 241, 80%) #16caf1CC  
rgb(22, 202, 241, 100%) #16caf1FF  

Saturated and desaturated colors of #16caf1

HSL Code Preview
hsl(191, 10%, 52%)  
hsl(191, 20%, 52%)  
hsl(191, 40%, 52%)  
hsl(191, 60%, 52%)  
hsl(191, 80%, 52%)  
hsl(191, 100%, 52%)  

#16caf1 Color Usage In CSS

 body {
    color: #16caf1;
    }
 p {
    color: rgb(22, 202, 241);
    }
 header {
    border-bottom:1px solid #16caf1;
    }
Recent Random Colors