Random Color Generator

#49c6ca Color

Color Codes
Hex Code #49c6ca
RGB Code rgb(73, 198, 202)
HSL Code hsl(182, 55%, 54%)

#49c6ca Color Syntax

rgb()

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

 main {
    background-color: rgb(73, 198, 202);
   }

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(182, 55%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(73, 198, 202, 10%) #49c6ca1a  
rgb(73, 198, 202, 20%) #49c6ca33  
rgb(73, 198, 202, 40%) #49c6ca4C  
rgb(73, 198, 202, 60%) #49c6ca99  
rgb(73, 198, 202, 80%) #49c6caCC  
rgb(73, 198, 202, 100%) #49c6caFF  

Saturated and desaturated colors of #49c6ca

HSL Code Preview
hsl(182, 10%, 54%)  
hsl(182, 20%, 54%)  
hsl(182, 40%, 54%)  
hsl(182, 60%, 54%)  
hsl(182, 80%, 54%)  
hsl(182, 100%, 54%)  

#49c6ca Color Usage In CSS

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