Random Color Generator

#e13986 Color

Color Codes
Hex Code #e13986
RGB Code rgb(225, 57, 134)
HSL Code hsl(333, 74%, 55%)

#e13986 Color Syntax

rgb()

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

 main {
    background-color: rgb(225, 57, 134);
   }

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(333, 74%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(225, 57, 134, 10%) #e139861a  
rgb(225, 57, 134, 20%) #e1398633  
rgb(225, 57, 134, 40%) #e139864C  
rgb(225, 57, 134, 60%) #e1398699  
rgb(225, 57, 134, 80%) #e13986CC  
rgb(225, 57, 134, 100%) #e13986FF  

Saturated and desaturated colors of #e13986

HSL Code Preview
hsl(333, 10%, 55%)  
hsl(333, 20%, 55%)  
hsl(333, 40%, 55%)  
hsl(333, 60%, 55%)  
hsl(333, 80%, 55%)  
hsl(333, 100%, 55%)  

#e13986 Color Usage In CSS

 body {
    color: #e13986;
    }
 p {
    color: rgb(225, 57, 134);
    }
 header {
    border-bottom:1px solid #e13986;
    }
Recent Random Colors