Random Color Generator

#f77556 Color

Color Codes
Hex Code #f77556
RGB Code rgb(247, 117, 86)
HSL Code hsl(12, 91%, 65%)

#f77556 Color Syntax

rgb()

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

 main {
    background-color: rgb(247, 117, 86);
   }

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(12, 91%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(247, 117, 86, 10%) #f775561a  
rgb(247, 117, 86, 20%) #f7755633  
rgb(247, 117, 86, 40%) #f775564C  
rgb(247, 117, 86, 60%) #f7755699  
rgb(247, 117, 86, 80%) #f77556CC  
rgb(247, 117, 86, 100%) #f77556FF  

Saturated and desaturated colors of #f77556

HSL Code Preview
hsl(12, 10%, 65%)  
hsl(12, 20%, 65%)  
hsl(12, 40%, 65%)  
hsl(12, 60%, 65%)  
hsl(12, 80%, 65%)  
hsl(12, 100%, 65%)  

#f77556 Color Usage In CSS

 body {
    color: #f77556;
    }
 p {
    color: rgb(247, 117, 86);
    }
 header {
    border-bottom:1px solid #f77556;
    }
Recent Random Colors