Random Color Generator

#9bcaad Color

Color Codes
Hex Code #9bcaad
RGB Code rgb(155, 202, 173)
HSL Code hsl(143, 31%, 70%)

#9bcaad Color Syntax

rgb()

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

 main {
    background-color: rgb(155, 202, 173);
   }

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, 31%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(155, 202, 173, 10%) #9bcaad1a  
rgb(155, 202, 173, 20%) #9bcaad33  
rgb(155, 202, 173, 40%) #9bcaad4C  
rgb(155, 202, 173, 60%) #9bcaad99  
rgb(155, 202, 173, 80%) #9bcaadCC  
rgb(155, 202, 173, 100%) #9bcaadFF  

Saturated and desaturated colors of #9bcaad

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

#9bcaad Color Usage In CSS

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