Random Color Generator

#ea0532 Color

Color Codes
Hex Code #ea0532
RGB Code rgb(234, 05, 50)
HSL Code hsl(348, 96%, 47%)

#ea0532 Color Syntax

rgb()

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

 main {
    background-color: rgb(234, 05, 50);
   }

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, 96%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(234, 05, 50, 10%) #ea05321a  
rgb(234, 05, 50, 20%) #ea053233  
rgb(234, 05, 50, 40%) #ea05324C  
rgb(234, 05, 50, 60%) #ea053299  
rgb(234, 05, 50, 80%) #ea0532CC  
rgb(234, 05, 50, 100%) #ea0532FF  

Saturated and desaturated colors of #ea0532

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

#ea0532 Color Usage In CSS

 body {
    color: #ea0532;
    }
 p {
    color: rgb(234, 05, 50);
    }
 header {
    border-bottom:1px solid #ea0532;
    }
Recent Random Colors