Random Color Generator

#106f96 Color

Color Codes
Hex Code #106f96
RGB Code rgb(16, 111, 150)
HSL Code hsl(197, 81%, 33%)

#106f96 Color Syntax

rgb()

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

 main {
    background-color: rgb(16, 111, 150);
   }

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(197, 81%, 33%);
  }

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 #106f96

RGB Code Hex Code Preview
rgb(16, 111, 150, 10%) #106f961a  
rgb(16, 111, 150, 20%) #106f9633  
rgb(16, 111, 150, 40%) #106f964C  
rgb(16, 111, 150, 60%) #106f9699  
rgb(16, 111, 150, 80%) #106f96CC  
rgb(16, 111, 150, 100%) #106f96FF  

Saturated and desaturated colors of #106f96

HSL Code Preview
hsl(197, 10%, 33%)  
hsl(197, 20%, 33%)  
hsl(197, 40%, 33%)  
hsl(197, 60%, 33%)  
hsl(197, 80%, 33%)  
hsl(197, 100%, 33%)  

#106f96 Color Usage In CSS

 body {
    color: #106f96;
    }
 p {
    color: rgb(16, 111, 150);
    }
 header {
    border-bottom:1px solid #106f96;
    }
Recent Random Colors