Random Color Generator

#fc7ea3 Color

Color Codes
Hex Code #fc7ea3
RGB Code rgb(252, 126, 163)
HSL Code hsl(342, 95%, 74%)

#fc7ea3 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 126, 163);
   }

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(342, 95%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(252, 126, 163, 10%) #fc7ea31a  
rgb(252, 126, 163, 20%) #fc7ea333  
rgb(252, 126, 163, 40%) #fc7ea34C  
rgb(252, 126, 163, 60%) #fc7ea399  
rgb(252, 126, 163, 80%) #fc7ea3CC  
rgb(252, 126, 163, 100%) #fc7ea3FF  

Saturated and desaturated colors of #fc7ea3

HSL Code Preview
hsl(342, 10%, 74%)  
hsl(342, 20%, 74%)  
hsl(342, 40%, 74%)  
hsl(342, 60%, 74%)  
hsl(342, 80%, 74%)  
hsl(342, 100%, 74%)  

#fc7ea3 Color Usage In CSS

 body {
    color: #fc7ea3;
    }
 p {
    color: rgb(252, 126, 163);
    }
 header {
    border-bottom:1px solid #fc7ea3;
    }
Recent Random Colors