Random Color Generator

#e14480 Color

Color Codes
Hex Code #e14480
RGB Code rgb(225, 68, 128)
HSL Code hsl(337, 72%, 57%)

#e14480 Color Syntax

rgb()

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

 main {
    background-color: rgb(225, 68, 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(337, 72%, 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 #e14480

RGB Code Hex Code Preview
rgb(225, 68, 128, 10%) #e144801a  
rgb(225, 68, 128, 20%) #e1448033  
rgb(225, 68, 128, 40%) #e144804C  
rgb(225, 68, 128, 60%) #e1448099  
rgb(225, 68, 128, 80%) #e14480CC  
rgb(225, 68, 128, 100%) #e14480FF  

Saturated and desaturated colors of #e14480

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

#e14480 Color Usage In CSS

 body {
    color: #e14480;
    }
 p {
    color: rgb(225, 68, 128);
    }
 header {
    border-bottom:1px solid #e14480;
    }
Recent Random Colors