Random Color Generator

#f57604 Color

Color Codes
Hex Code #f57604
RGB Code rgb(245, 118, 04)
HSL Code hsl(28, 97%, 49%)

#f57604 Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 118, 04);
   }

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(28, 97%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(245, 118, 04, 10%) #f576041a  
rgb(245, 118, 04, 20%) #f5760433  
rgb(245, 118, 04, 40%) #f576044C  
rgb(245, 118, 04, 60%) #f5760499  
rgb(245, 118, 04, 80%) #f57604CC  
rgb(245, 118, 04, 100%) #f57604FF  

Saturated and desaturated colors of #f57604

HSL Code Preview
hsl(28, 10%, 49%)  
hsl(28, 20%, 49%)  
hsl(28, 40%, 49%)  
hsl(28, 60%, 49%)  
hsl(28, 80%, 49%)  
hsl(28, 100%, 49%)  

#f57604 Color Usage In CSS

 body {
    color: #f57604;
    }
 p {
    color: rgb(245, 118, 04);
    }
 header {
    border-bottom:1px solid #f57604;
    }
Recent Random Colors