Random Color Generator

#fa34a9 Color

Color Codes
Hex Code #fa34a9
RGB Code rgb(250, 52, 169)
HSL Code hsl(325, 95%, 59%)

#fa34a9 Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 52, 169);
   }

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, 95%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(250, 52, 169, 10%) #fa34a91a  
rgb(250, 52, 169, 20%) #fa34a933  
rgb(250, 52, 169, 40%) #fa34a94C  
rgb(250, 52, 169, 60%) #fa34a999  
rgb(250, 52, 169, 80%) #fa34a9CC  
rgb(250, 52, 169, 100%) #fa34a9FF  

Saturated and desaturated colors of #fa34a9

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

#fa34a9 Color Usage In CSS

 body {
    color: #fa34a9;
    }
 p {
    color: rgb(250, 52, 169);
    }
 header {
    border-bottom:1px solid #fa34a9;
    }
Recent Random Colors