Random Color Generator

#9ae1cd Color

Color Codes
Hex Code #9ae1cd
RGB Code rgb(154, 225, 205)
HSL Code hsl(163, 54%, 74%)

#9ae1cd Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 225, 205);
   }

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(163, 54%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(154, 225, 205, 10%) #9ae1cd1a  
rgb(154, 225, 205, 20%) #9ae1cd33  
rgb(154, 225, 205, 40%) #9ae1cd4C  
rgb(154, 225, 205, 60%) #9ae1cd99  
rgb(154, 225, 205, 80%) #9ae1cdCC  
rgb(154, 225, 205, 100%) #9ae1cdFF  

Saturated and desaturated colors of #9ae1cd

HSL Code Preview
hsl(163, 10%, 74%)  
hsl(163, 20%, 74%)  
hsl(163, 40%, 74%)  
hsl(163, 60%, 74%)  
hsl(163, 80%, 74%)  
hsl(163, 100%, 74%)  

#9ae1cd Color Usage In CSS

 body {
    color: #9ae1cd;
    }
 p {
    color: rgb(154, 225, 205);
    }
 header {
    border-bottom:1px solid #9ae1cd;
    }
Recent Random Colors