Random Color Generator

#99a7b1 Color

Color Codes
Hex Code #99a7b1
RGB Code rgb(153, 167, 177)
HSL Code hsl(205, 13%, 65%)

#99a7b1 Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 167, 177);
   }

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(205, 13%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(153, 167, 177, 10%) #99a7b11a  
rgb(153, 167, 177, 20%) #99a7b133  
rgb(153, 167, 177, 40%) #99a7b14C  
rgb(153, 167, 177, 60%) #99a7b199  
rgb(153, 167, 177, 80%) #99a7b1CC  
rgb(153, 167, 177, 100%) #99a7b1FF  

Saturated and desaturated colors of #99a7b1

HSL Code Preview
hsl(205, 10%, 65%)  
hsl(205, 20%, 65%)  
hsl(205, 40%, 65%)  
hsl(205, 60%, 65%)  
hsl(205, 80%, 65%)  
hsl(205, 100%, 65%)  

#99a7b1 Color Usage In CSS

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