Random Color Generator

#fc2195 Color

Color Codes
Hex Code #fc2195
RGB Code rgb(252, 33, 149)
HSL Code hsl(328, 97%, 56%)

#fc2195 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 33, 149);
   }

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(328, 97%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(252, 33, 149, 10%) #fc21951a  
rgb(252, 33, 149, 20%) #fc219533  
rgb(252, 33, 149, 40%) #fc21954C  
rgb(252, 33, 149, 60%) #fc219599  
rgb(252, 33, 149, 80%) #fc2195CC  
rgb(252, 33, 149, 100%) #fc2195FF  

Saturated and desaturated colors of #fc2195

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

#fc2195 Color Usage In CSS

 body {
    color: #fc2195;
    }
 p {
    color: rgb(252, 33, 149);
    }
 header {
    border-bottom:1px solid #fc2195;
    }
Recent Random Colors