Random Color Generator

#9cafa6 Color

Color Codes
Hex Code #9cafa6
RGB Code rgb(156, 175, 166)
HSL Code hsl(152, 11%, 65%)

#9cafa6 Color Syntax

rgb()

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

 main {
    background-color: rgb(156, 175, 166);
   }

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(152, 11%, 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 #9cafa6

RGB Code Hex Code Preview
rgb(156, 175, 166, 10%) #9cafa61a  
rgb(156, 175, 166, 20%) #9cafa633  
rgb(156, 175, 166, 40%) #9cafa64C  
rgb(156, 175, 166, 60%) #9cafa699  
rgb(156, 175, 166, 80%) #9cafa6CC  
rgb(156, 175, 166, 100%) #9cafa6FF  

Saturated and desaturated colors of #9cafa6

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

#9cafa6 Color Usage In CSS

 body {
    color: #9cafa6;
    }
 p {
    color: rgb(156, 175, 166);
    }
 header {
    border-bottom:1px solid #9cafa6;
    }
Recent Random Colors