Random Color Generator

#fa804b Color

Color Codes
Hex Code #fa804b
RGB Code rgb(250, 128, 75)
HSL Code hsl(18, 95%, 64%)

#fa804b Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 128, 75);
   }

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(18, 95%, 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 #fa804b

RGB Code Hex Code Preview
rgb(250, 128, 75, 10%) #fa804b1a  
rgb(250, 128, 75, 20%) #fa804b33  
rgb(250, 128, 75, 40%) #fa804b4C  
rgb(250, 128, 75, 60%) #fa804b99  
rgb(250, 128, 75, 80%) #fa804bCC  
rgb(250, 128, 75, 100%) #fa804bFF  

Saturated and desaturated colors of #fa804b

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

#fa804b Color Usage In CSS

 body {
    color: #fa804b;
    }
 p {
    color: rgb(250, 128, 75);
    }
 header {
    border-bottom:1px solid #fa804b;
    }
Recent Random Colors