Random Color Generator

#fc8aa8 Color

Color Codes
Hex Code #fc8aa8
RGB Code rgb(252, 138, 168)
HSL Code hsl(344, 95%, 76%)

#fc8aa8 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 138, 168);
   }

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(344, 95%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(252, 138, 168, 10%) #fc8aa81a  
rgb(252, 138, 168, 20%) #fc8aa833  
rgb(252, 138, 168, 40%) #fc8aa84C  
rgb(252, 138, 168, 60%) #fc8aa899  
rgb(252, 138, 168, 80%) #fc8aa8CC  
rgb(252, 138, 168, 100%) #fc8aa8FF  

Saturated and desaturated colors of #fc8aa8

HSL Code Preview
hsl(344, 10%, 76%)  
hsl(344, 20%, 76%)  
hsl(344, 40%, 76%)  
hsl(344, 60%, 76%)  
hsl(344, 80%, 76%)  
hsl(344, 100%, 76%)  

#fc8aa8 Color Usage In CSS

 body {
    color: #fc8aa8;
    }
 p {
    color: rgb(252, 138, 168);
    }
 header {
    border-bottom:1px solid #fc8aa8;
    }
Recent Random Colors