Random Color Generator

#fc3661 Color

Color Codes
Hex Code #fc3661
RGB Code rgb(252, 54, 97)
HSL Code hsl(347, 97%, 60%)

#fc3661 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 54, 97);
   }

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(347, 97%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(252, 54, 97, 10%) #fc36611a  
rgb(252, 54, 97, 20%) #fc366133  
rgb(252, 54, 97, 40%) #fc36614C  
rgb(252, 54, 97, 60%) #fc366199  
rgb(252, 54, 97, 80%) #fc3661CC  
rgb(252, 54, 97, 100%) #fc3661FF  

Saturated and desaturated colors of #fc3661

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

#fc3661 Color Usage In CSS

 body {
    color: #fc3661;
    }
 p {
    color: rgb(252, 54, 97);
    }
 header {
    border-bottom:1px solid #fc3661;
    }
Recent Random Colors