Random Color Generator

#fa6cc8 Color

Color Codes
Hex Code #fa6cc8
RGB Code rgb(250, 108, 200)
HSL Code hsl(321, 93%, 70%)

#fa6cc8 Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 108, 200);
   }

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(321, 93%, 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 #fa6cc8

RGB Code Hex Code Preview
rgb(250, 108, 200, 10%) #fa6cc81a  
rgb(250, 108, 200, 20%) #fa6cc833  
rgb(250, 108, 200, 40%) #fa6cc84C  
rgb(250, 108, 200, 60%) #fa6cc899  
rgb(250, 108, 200, 80%) #fa6cc8CC  
rgb(250, 108, 200, 100%) #fa6cc8FF  

Saturated and desaturated colors of #fa6cc8

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

#fa6cc8 Color Usage In CSS

 body {
    color: #fa6cc8;
    }
 p {
    color: rgb(250, 108, 200);
    }
 header {
    border-bottom:1px solid #fa6cc8;
    }
Recent Random Colors