Random Color Generator

#fc9bca Color

Color Codes
Hex Code #fc9bca
RGB Code rgb(252, 155, 202)
HSL Code hsl(331, 94%, 80%)

#fc9bca Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 155, 202);
   }

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(331, 94%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(252, 155, 202, 10%) #fc9bca1a  
rgb(252, 155, 202, 20%) #fc9bca33  
rgb(252, 155, 202, 40%) #fc9bca4C  
rgb(252, 155, 202, 60%) #fc9bca99  
rgb(252, 155, 202, 80%) #fc9bcaCC  
rgb(252, 155, 202, 100%) #fc9bcaFF  

Saturated and desaturated colors of #fc9bca

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

#fc9bca Color Usage In CSS

 body {
    color: #fc9bca;
    }
 p {
    color: rgb(252, 155, 202);
    }
 header {
    border-bottom:1px solid #fc9bca;
    }
Recent Random Colors