Random Color Generator

#44a998 Color

Color Codes
Hex Code #44a998
RGB Code rgb(68, 169, 152)
HSL Code hsl(170, 43%, 46%)

#44a998 Color Syntax

rgb()

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

 main {
    background-color: rgb(68, 169, 152);
   }

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(170, 43%, 46%);
  }

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 #44a998

RGB Code Hex Code Preview
rgb(68, 169, 152, 10%) #44a9981a  
rgb(68, 169, 152, 20%) #44a99833  
rgb(68, 169, 152, 40%) #44a9984C  
rgb(68, 169, 152, 60%) #44a99899  
rgb(68, 169, 152, 80%) #44a998CC  
rgb(68, 169, 152, 100%) #44a998FF  

Saturated and desaturated colors of #44a998

HSL Code Preview
hsl(170, 10%, 46%)  
hsl(170, 20%, 46%)  
hsl(170, 40%, 46%)  
hsl(170, 60%, 46%)  
hsl(170, 80%, 46%)  
hsl(170, 100%, 46%)  

#44a998 Color Usage In CSS

 body {
    color: #44a998;
    }
 p {
    color: rgb(68, 169, 152);
    }
 header {
    border-bottom:1px solid #44a998;
    }
Recent Random Colors