Random Color Generator

#49b3ac Color

Color Codes
Hex Code #49b3ac
RGB Code rgb(73, 179, 172)
HSL Code hsl(176, 42%, 49%)

#49b3ac Color Syntax

rgb()

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

 main {
    background-color: rgb(73, 179, 172);
   }

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(176, 42%, 49%);
  }

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 #49b3ac

RGB Code Hex Code Preview
rgb(73, 179, 172, 10%) #49b3ac1a  
rgb(73, 179, 172, 20%) #49b3ac33  
rgb(73, 179, 172, 40%) #49b3ac4C  
rgb(73, 179, 172, 60%) #49b3ac99  
rgb(73, 179, 172, 80%) #49b3acCC  
rgb(73, 179, 172, 100%) #49b3acFF  

Saturated and desaturated colors of #49b3ac

HSL Code Preview
hsl(176, 10%, 49%)  
hsl(176, 20%, 49%)  
hsl(176, 40%, 49%)  
hsl(176, 60%, 49%)  
hsl(176, 80%, 49%)  
hsl(176, 100%, 49%)  

#49b3ac Color Usage In CSS

 body {
    color: #49b3ac;
    }
 p {
    color: rgb(73, 179, 172);
    }
 header {
    border-bottom:1px solid #49b3ac;
    }
Recent Random Colors