Random Color Generator

#fc5c4e Color

Color Codes
Hex Code #fc5c4e
RGB Code rgb(252, 92, 78)
HSL Code hsl(5, 97%, 65%)

#fc5c4e Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 92, 78);
   }

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(5, 97%, 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 #fc5c4e

RGB Code Hex Code Preview
rgb(252, 92, 78, 10%) #fc5c4e1a  
rgb(252, 92, 78, 20%) #fc5c4e33  
rgb(252, 92, 78, 40%) #fc5c4e4C  
rgb(252, 92, 78, 60%) #fc5c4e99  
rgb(252, 92, 78, 80%) #fc5c4eCC  
rgb(252, 92, 78, 100%) #fc5c4eFF  

Saturated and desaturated colors of #fc5c4e

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

#fc5c4e Color Usage In CSS

 body {
    color: #fc5c4e;
    }
 p {
    color: rgb(252, 92, 78);
    }
 header {
    border-bottom:1px solid #fc5c4e;
    }
Recent Random Colors