Random Color Generator

#9bcfaf Color

Color Codes
Hex Code #9bcfaf
RGB Code rgb(155, 207, 175)
HSL Code hsl(143, 35%, 71%)

#9bcfaf Color Syntax

rgb()

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

 main {
    background-color: rgb(155, 207, 175);
   }

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(143, 35%, 71%);
  }

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

RGB Code Hex Code Preview
rgb(155, 207, 175, 10%) #9bcfaf1a  
rgb(155, 207, 175, 20%) #9bcfaf33  
rgb(155, 207, 175, 40%) #9bcfaf4C  
rgb(155, 207, 175, 60%) #9bcfaf99  
rgb(155, 207, 175, 80%) #9bcfafCC  
rgb(155, 207, 175, 100%) #9bcfafFF  

Saturated and desaturated colors of #9bcfaf

HSL Code Preview
hsl(143, 10%, 71%)  
hsl(143, 20%, 71%)  
hsl(143, 40%, 71%)  
hsl(143, 60%, 71%)  
hsl(143, 80%, 71%)  
hsl(143, 100%, 71%)  

#9bcfaf Color Usage In CSS

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