Random Color Generator

#90b8ab Color

Color Codes
Hex Code #90b8ab
RGB Code rgb(144, 184, 171)
HSL Code hsl(161, 22%, 64%)

#90b8ab Color Syntax

rgb()

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

 main {
    background-color: rgb(144, 184, 171);
   }

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(161, 22%, 64%);
  }

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 #90b8ab

RGB Code Hex Code Preview
rgb(144, 184, 171, 10%) #90b8ab1a  
rgb(144, 184, 171, 20%) #90b8ab33  
rgb(144, 184, 171, 40%) #90b8ab4C  
rgb(144, 184, 171, 60%) #90b8ab99  
rgb(144, 184, 171, 80%) #90b8abCC  
rgb(144, 184, 171, 100%) #90b8abFF  

Saturated and desaturated colors of #90b8ab

HSL Code Preview
hsl(161, 10%, 64%)  
hsl(161, 20%, 64%)  
hsl(161, 40%, 64%)  
hsl(161, 60%, 64%)  
hsl(161, 80%, 64%)  
hsl(161, 100%, 64%)  

#90b8ab Color Usage In CSS

 body {
    color: #90b8ab;
    }
 p {
    color: rgb(144, 184, 171);
    }
 header {
    border-bottom:1px solid #90b8ab;
    }
Recent Random Colors