Random Color Generator

#ea333c Color

Color Codes
Hex Code #ea333c
RGB Code rgb(234, 51, 60)
HSL Code hsl(357, 81%, 56%)

#ea333c Color Syntax

rgb()

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

 main {
    background-color: rgb(234, 51, 60);
   }

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(357, 81%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(234, 51, 60, 10%) #ea333c1a  
rgb(234, 51, 60, 20%) #ea333c33  
rgb(234, 51, 60, 40%) #ea333c4C  
rgb(234, 51, 60, 60%) #ea333c99  
rgb(234, 51, 60, 80%) #ea333cCC  
rgb(234, 51, 60, 100%) #ea333cFF  

Saturated and desaturated colors of #ea333c

HSL Code Preview
hsl(357, 10%, 56%)  
hsl(357, 20%, 56%)  
hsl(357, 40%, 56%)  
hsl(357, 60%, 56%)  
hsl(357, 80%, 56%)  
hsl(357, 100%, 56%)  

#ea333c Color Usage In CSS

 body {
    color: #ea333c;
    }
 p {
    color: rgb(234, 51, 60);
    }
 header {
    border-bottom:1px solid #ea333c;
    }
Recent Random Colors