Random Color Generator

#f9a44f Color

Color Codes
Hex Code #f9a44f
RGB Code rgb(249, 164, 79)
HSL Code hsl(30, 93%, 64%)

#f9a44f Color Syntax

rgb()

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

 main {
    background-color: rgb(249, 164, 79);
   }

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(30, 93%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(249, 164, 79, 10%) #f9a44f1a  
rgb(249, 164, 79, 20%) #f9a44f33  
rgb(249, 164, 79, 40%) #f9a44f4C  
rgb(249, 164, 79, 60%) #f9a44f99  
rgb(249, 164, 79, 80%) #f9a44fCC  
rgb(249, 164, 79, 100%) #f9a44fFF  

Saturated and desaturated colors of #f9a44f

HSL Code Preview
hsl(30, 10%, 64%)  
hsl(30, 20%, 64%)  
hsl(30, 40%, 64%)  
hsl(30, 60%, 64%)  
hsl(30, 80%, 64%)  
hsl(30, 100%, 64%)  

#f9a44f Color Usage In CSS

 body {
    color: #f9a44f;
    }
 p {
    color: rgb(249, 164, 79);
    }
 header {
    border-bottom:1px solid #f9a44f;
    }
Recent Random Colors