Random Color Generator

#f4a77d Color

Color Codes
Hex Code #f4a77d
RGB Code rgb(244, 167, 125)
HSL Code hsl(21, 84%, 72%)

#f4a77d Color Syntax

rgb()

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

 main {
    background-color: rgb(244, 167, 125);
   }

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(21, 84%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(244, 167, 125, 10%) #f4a77d1a  
rgb(244, 167, 125, 20%) #f4a77d33  
rgb(244, 167, 125, 40%) #f4a77d4C  
rgb(244, 167, 125, 60%) #f4a77d99  
rgb(244, 167, 125, 80%) #f4a77dCC  
rgb(244, 167, 125, 100%) #f4a77dFF  

Saturated and desaturated colors of #f4a77d

HSL Code Preview
hsl(21, 10%, 72%)  
hsl(21, 20%, 72%)  
hsl(21, 40%, 72%)  
hsl(21, 60%, 72%)  
hsl(21, 80%, 72%)  
hsl(21, 100%, 72%)  

#f4a77d Color Usage In CSS

 body {
    color: #f4a77d;
    }
 p {
    color: rgb(244, 167, 125);
    }
 header {
    border-bottom:1px solid #f4a77d;
    }
Recent Random Colors