Random Color Generator

#ec4123 Color

Color Codes
Hex Code #ec4123
RGB Code rgb(236, 65, 35)
HSL Code hsl(9, 84%, 53%)

#ec4123 Color Syntax

rgb()

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

 main {
    background-color: rgb(236, 65, 35);
   }

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(9, 84%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(236, 65, 35, 10%) #ec41231a  
rgb(236, 65, 35, 20%) #ec412333  
rgb(236, 65, 35, 40%) #ec41234C  
rgb(236, 65, 35, 60%) #ec412399  
rgb(236, 65, 35, 80%) #ec4123CC  
rgb(236, 65, 35, 100%) #ec4123FF  

Saturated and desaturated colors of #ec4123

HSL Code Preview
hsl(9, 10%, 53%)  
hsl(9, 20%, 53%)  
hsl(9, 40%, 53%)  
hsl(9, 60%, 53%)  
hsl(9, 80%, 53%)  
hsl(9, 100%, 53%)  

#ec4123 Color Usage In CSS

 body {
    color: #ec4123;
    }
 p {
    color: rgb(236, 65, 35);
    }
 header {
    border-bottom:1px solid #ec4123;
    }
Recent Random Colors