Random Color Generator

#fc6bc0 Color

Color Codes
Hex Code #fc6bc0
RGB Code rgb(252, 107, 192)
HSL Code hsl(325, 96%, 70%)

#fc6bc0 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 107, 192);
   }

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(325, 96%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(252, 107, 192, 10%) #fc6bc01a  
rgb(252, 107, 192, 20%) #fc6bc033  
rgb(252, 107, 192, 40%) #fc6bc04C  
rgb(252, 107, 192, 60%) #fc6bc099  
rgb(252, 107, 192, 80%) #fc6bc0CC  
rgb(252, 107, 192, 100%) #fc6bc0FF  

Saturated and desaturated colors of #fc6bc0

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

#fc6bc0 Color Usage In CSS

 body {
    color: #fc6bc0;
    }
 p {
    color: rgb(252, 107, 192);
    }
 header {
    border-bottom:1px solid #fc6bc0;
    }
Recent Random Colors