Random Color Generator

#3c988f Color

Color Codes
Hex Code #3c988f
RGB Code rgb(60, 152, 143)
HSL Code hsl(174, 43%, 42%)

#3c988f Color Syntax

rgb()

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

 main {
    background-color: rgb(60, 152, 143);
   }

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(174, 43%, 42%);
  }

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 #3c988f

RGB Code Hex Code Preview
rgb(60, 152, 143, 10%) #3c988f1a  
rgb(60, 152, 143, 20%) #3c988f33  
rgb(60, 152, 143, 40%) #3c988f4C  
rgb(60, 152, 143, 60%) #3c988f99  
rgb(60, 152, 143, 80%) #3c988fCC  
rgb(60, 152, 143, 100%) #3c988fFF  

Saturated and desaturated colors of #3c988f

HSL Code Preview
hsl(174, 10%, 42%)  
hsl(174, 20%, 42%)  
hsl(174, 40%, 42%)  
hsl(174, 60%, 42%)  
hsl(174, 80%, 42%)  
hsl(174, 100%, 42%)  

#3c988f Color Usage In CSS

 body {
    color: #3c988f;
    }
 p {
    color: rgb(60, 152, 143);
    }
 header {
    border-bottom:1px solid #3c988f;
    }
Recent Random Colors