Random Color Generator

#ec9980 Color

Color Codes
Hex Code #ec9980
RGB Code rgb(236, 153, 128)
HSL Code hsl(14, 74%, 71%)

#ec9980 Color Syntax

rgb()

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

 main {
    background-color: rgb(236, 153, 128);
   }

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(14, 74%, 71%);
  }

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 #ec9980

RGB Code Hex Code Preview
rgb(236, 153, 128, 10%) #ec99801a  
rgb(236, 153, 128, 20%) #ec998033  
rgb(236, 153, 128, 40%) #ec99804C  
rgb(236, 153, 128, 60%) #ec998099  
rgb(236, 153, 128, 80%) #ec9980CC  
rgb(236, 153, 128, 100%) #ec9980FF  

Saturated and desaturated colors of #ec9980

HSL Code Preview
hsl(14, 10%, 71%)  
hsl(14, 20%, 71%)  
hsl(14, 40%, 71%)  
hsl(14, 60%, 71%)  
hsl(14, 80%, 71%)  
hsl(14, 100%, 71%)  

#ec9980 Color Usage In CSS

 body {
    color: #ec9980;
    }
 p {
    color: rgb(236, 153, 128);
    }
 header {
    border-bottom:1px solid #ec9980;
    }
Recent Random Colors