Random Color Generator

#f7a224 Color

Color Codes
Hex Code #f7a224
RGB Code rgb(247, 162, 36)
HSL Code hsl(36, 93%, 55%)

#f7a224 Color Syntax

rgb()

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

 main {
    background-color: rgb(247, 162, 36);
   }

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(36, 93%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(247, 162, 36, 10%) #f7a2241a  
rgb(247, 162, 36, 20%) #f7a22433  
rgb(247, 162, 36, 40%) #f7a2244C  
rgb(247, 162, 36, 60%) #f7a22499  
rgb(247, 162, 36, 80%) #f7a224CC  
rgb(247, 162, 36, 100%) #f7a224FF  

Saturated and desaturated colors of #f7a224

HSL Code Preview
hsl(36, 10%, 55%)  
hsl(36, 20%, 55%)  
hsl(36, 40%, 55%)  
hsl(36, 60%, 55%)  
hsl(36, 80%, 55%)  
hsl(36, 100%, 55%)  

#f7a224 Color Usage In CSS

 body {
    color: #f7a224;
    }
 p {
    color: rgb(247, 162, 36);
    }
 header {
    border-bottom:1px solid #f7a224;
    }
Recent Random Colors