Random Color Generator

#f4470e Color

Color Codes
Hex Code #f4470e
RGB Code rgb(244, 71, 14)
HSL Code hsl(15, 91%, 51%)

#f4470e Color Syntax

rgb()

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

 main {
    background-color: rgb(244, 71, 14);
   }

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(15, 91%, 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 #f4470e

RGB Code Hex Code Preview
rgb(244, 71, 14, 10%) #f4470e1a  
rgb(244, 71, 14, 20%) #f4470e33  
rgb(244, 71, 14, 40%) #f4470e4C  
rgb(244, 71, 14, 60%) #f4470e99  
rgb(244, 71, 14, 80%) #f4470eCC  
rgb(244, 71, 14, 100%) #f4470eFF  

Saturated and desaturated colors of #f4470e

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

#f4470e Color Usage In CSS

 body {
    color: #f4470e;
    }
 p {
    color: rgb(244, 71, 14);
    }
 header {
    border-bottom:1px solid #f4470e;
    }
Recent Random Colors