Random Color Generator

#e214b7 Color

Color Codes
Hex Code #e214b7
RGB Code rgb(226, 20, 183)
HSL Code hsl(313, 84%, 48%)

#e214b7 Color Syntax

rgb()

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

 main {
    background-color: rgb(226, 20, 183);
   }

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(313, 84%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(226, 20, 183, 10%) #e214b71a  
rgb(226, 20, 183, 20%) #e214b733  
rgb(226, 20, 183, 40%) #e214b74C  
rgb(226, 20, 183, 60%) #e214b799  
rgb(226, 20, 183, 80%) #e214b7CC  
rgb(226, 20, 183, 100%) #e214b7FF  

Saturated and desaturated colors of #e214b7

HSL Code Preview
hsl(313, 10%, 48%)  
hsl(313, 20%, 48%)  
hsl(313, 40%, 48%)  
hsl(313, 60%, 48%)  
hsl(313, 80%, 48%)  
hsl(313, 100%, 48%)  

#e214b7 Color Usage In CSS

 body {
    color: #e214b7;
    }
 p {
    color: rgb(226, 20, 183);
    }
 header {
    border-bottom:1px solid #e214b7;
    }
Recent Random Colors