Random Color Generator

#e01c43 Color

Color Codes
Hex Code #e01c43
RGB Code rgb(224, 28, 67)
HSL Code hsl(348, 78%, 49%)

#e01c43 Color Syntax

rgb()

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

 main {
    background-color: rgb(224, 28, 67);
   }

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(348, 78%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(224, 28, 67, 10%) #e01c431a  
rgb(224, 28, 67, 20%) #e01c4333  
rgb(224, 28, 67, 40%) #e01c434C  
rgb(224, 28, 67, 60%) #e01c4399  
rgb(224, 28, 67, 80%) #e01c43CC  
rgb(224, 28, 67, 100%) #e01c43FF  

Saturated and desaturated colors of #e01c43

HSL Code Preview
hsl(348, 10%, 49%)  
hsl(348, 20%, 49%)  
hsl(348, 40%, 49%)  
hsl(348, 60%, 49%)  
hsl(348, 80%, 49%)  
hsl(348, 100%, 49%)  

#e01c43 Color Usage In CSS

 body {
    color: #e01c43;
    }
 p {
    color: rgb(224, 28, 67);
    }
 header {
    border-bottom:1px solid #e01c43;
    }
Recent Random Colors