Random Color Generator

#99a9c0 Color

Color Codes
Hex Code #99a9c0
RGB Code rgb(153, 169, 192)
HSL Code hsl(215, 24%, 68%)

#99a9c0 Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 169, 192);
   }

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(215, 24%, 68%);
  }

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 #99a9c0

RGB Code Hex Code Preview
rgb(153, 169, 192, 10%) #99a9c01a  
rgb(153, 169, 192, 20%) #99a9c033  
rgb(153, 169, 192, 40%) #99a9c04C  
rgb(153, 169, 192, 60%) #99a9c099  
rgb(153, 169, 192, 80%) #99a9c0CC  
rgb(153, 169, 192, 100%) #99a9c0FF  

Saturated and desaturated colors of #99a9c0

HSL Code Preview
hsl(215, 10%, 68%)  
hsl(215, 20%, 68%)  
hsl(215, 40%, 68%)  
hsl(215, 60%, 68%)  
hsl(215, 80%, 68%)  
hsl(215, 100%, 68%)  

#99a9c0 Color Usage In CSS

 body {
    color: #99a9c0;
    }
 p {
    color: rgb(153, 169, 192);
    }
 header {
    border-bottom:1px solid #99a9c0;
    }
Recent Random Colors