Random Color Generator

#99a3bd Color

Color Codes
Hex Code #99a3bd
RGB Code rgb(153, 163, 189)
HSL Code hsl(223, 21%, 67%)

#99a3bd Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 163, 189);
   }

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(223, 21%, 67%);
  }

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

RGB Code Hex Code Preview
rgb(153, 163, 189, 10%) #99a3bd1a  
rgb(153, 163, 189, 20%) #99a3bd33  
rgb(153, 163, 189, 40%) #99a3bd4C  
rgb(153, 163, 189, 60%) #99a3bd99  
rgb(153, 163, 189, 80%) #99a3bdCC  
rgb(153, 163, 189, 100%) #99a3bdFF  

Saturated and desaturated colors of #99a3bd

HSL Code Preview
hsl(223, 10%, 67%)  
hsl(223, 20%, 67%)  
hsl(223, 40%, 67%)  
hsl(223, 60%, 67%)  
hsl(223, 80%, 67%)  
hsl(223, 100%, 67%)  

#99a3bd Color Usage In CSS

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