Random Color Generator

#2c9388 Color

Color Codes
Hex Code #2c9388
RGB Code rgb(44, 147, 136)
HSL Code hsl(174, 54%, 37%)

#2c9388 Color Syntax

rgb()

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

 main {
    background-color: rgb(44, 147, 136);
   }

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, 54%, 37%);
  }

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 #2c9388

RGB Code Hex Code Preview
rgb(44, 147, 136, 10%) #2c93881a  
rgb(44, 147, 136, 20%) #2c938833  
rgb(44, 147, 136, 40%) #2c93884C  
rgb(44, 147, 136, 60%) #2c938899  
rgb(44, 147, 136, 80%) #2c9388CC  
rgb(44, 147, 136, 100%) #2c9388FF  

Saturated and desaturated colors of #2c9388

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

#2c9388 Color Usage In CSS

 body {
    color: #2c9388;
    }
 p {
    color: rgb(44, 147, 136);
    }
 header {
    border-bottom:1px solid #2c9388;
    }
Recent Random Colors