Random Color Generator

#ec3695 Color

Color Codes
Hex Code #ec3695
RGB Code rgb(236, 54, 149)
HSL Code hsl(329, 83%, 57%)

#ec3695 Color Syntax

rgb()

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

 main {
    background-color: rgb(236, 54, 149);
   }

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(329, 83%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(236, 54, 149, 10%) #ec36951a  
rgb(236, 54, 149, 20%) #ec369533  
rgb(236, 54, 149, 40%) #ec36954C  
rgb(236, 54, 149, 60%) #ec369599  
rgb(236, 54, 149, 80%) #ec3695CC  
rgb(236, 54, 149, 100%) #ec3695FF  

Saturated and desaturated colors of #ec3695

HSL Code Preview
hsl(329, 10%, 57%)  
hsl(329, 20%, 57%)  
hsl(329, 40%, 57%)  
hsl(329, 60%, 57%)  
hsl(329, 80%, 57%)  
hsl(329, 100%, 57%)  

#ec3695 Color Usage In CSS

 body {
    color: #ec3695;
    }
 p {
    color: rgb(236, 54, 149);
    }
 header {
    border-bottom:1px solid #ec3695;
    }
Recent Random Colors