Random Color Generator

#fc76c6 Color

Color Codes
Hex Code #fc76c6
RGB Code rgb(252, 118, 198)
HSL Code hsl(324, 96%, 73%)

#fc76c6 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 118, 198);
   }

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(324, 96%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(252, 118, 198, 10%) #fc76c61a  
rgb(252, 118, 198, 20%) #fc76c633  
rgb(252, 118, 198, 40%) #fc76c64C  
rgb(252, 118, 198, 60%) #fc76c699  
rgb(252, 118, 198, 80%) #fc76c6CC  
rgb(252, 118, 198, 100%) #fc76c6FF  

Saturated and desaturated colors of #fc76c6

HSL Code Preview
hsl(324, 10%, 73%)  
hsl(324, 20%, 73%)  
hsl(324, 40%, 73%)  
hsl(324, 60%, 73%)  
hsl(324, 80%, 73%)  
hsl(324, 100%, 73%)  

#fc76c6 Color Usage In CSS

 body {
    color: #fc76c6;
    }
 p {
    color: rgb(252, 118, 198);
    }
 header {
    border-bottom:1px solid #fc76c6;
    }
Recent Random Colors