Random Color Generator

#e61c38 Color

Color Codes
Hex Code #e61c38
RGB Code rgb(230, 28, 56)
HSL Code hsl(352, 80%, 51%)

#e61c38 Color Syntax

rgb()

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

 main {
    background-color: rgb(230, 28, 56);
   }

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(352, 80%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(230, 28, 56, 10%) #e61c381a  
rgb(230, 28, 56, 20%) #e61c3833  
rgb(230, 28, 56, 40%) #e61c384C  
rgb(230, 28, 56, 60%) #e61c3899  
rgb(230, 28, 56, 80%) #e61c38CC  
rgb(230, 28, 56, 100%) #e61c38FF  

Saturated and desaturated colors of #e61c38

HSL Code Preview
hsl(352, 10%, 51%)  
hsl(352, 20%, 51%)  
hsl(352, 40%, 51%)  
hsl(352, 60%, 51%)  
hsl(352, 80%, 51%)  
hsl(352, 100%, 51%)  

#e61c38 Color Usage In CSS

 body {
    color: #e61c38;
    }
 p {
    color: rgb(230, 28, 56);
    }
 header {
    border-bottom:1px solid #e61c38;
    }
Recent Random Colors