Random Color Generator

#9ec1b8 Color

Color Codes
Hex Code #9ec1b8
RGB Code rgb(158, 193, 184)
HSL Code hsl(165, 22%, 69%)

#9ec1b8 Color Syntax

rgb()

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

 main {
    background-color: rgb(158, 193, 184);
   }

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(165, 22%, 69%);
  }

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 #9ec1b8

RGB Code Hex Code Preview
rgb(158, 193, 184, 10%) #9ec1b81a  
rgb(158, 193, 184, 20%) #9ec1b833  
rgb(158, 193, 184, 40%) #9ec1b84C  
rgb(158, 193, 184, 60%) #9ec1b899  
rgb(158, 193, 184, 80%) #9ec1b8CC  
rgb(158, 193, 184, 100%) #9ec1b8FF  

Saturated and desaturated colors of #9ec1b8

HSL Code Preview
hsl(165, 10%, 69%)  
hsl(165, 20%, 69%)  
hsl(165, 40%, 69%)  
hsl(165, 60%, 69%)  
hsl(165, 80%, 69%)  
hsl(165, 100%, 69%)  

#9ec1b8 Color Usage In CSS

 body {
    color: #9ec1b8;
    }
 p {
    color: rgb(158, 193, 184);
    }
 header {
    border-bottom:1px solid #9ec1b8;
    }
Recent Random Colors