Random Color Generator

#fa95ea Color

Color Codes
Hex Code #fa95ea
RGB Code rgb(250, 149, 234)
HSL Code hsl(310, 91%, 78%)

#fa95ea Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 149, 234);
   }

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(310, 91%, 78%);
  }

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

RGB Code Hex Code Preview
rgb(250, 149, 234, 10%) #fa95ea1a  
rgb(250, 149, 234, 20%) #fa95ea33  
rgb(250, 149, 234, 40%) #fa95ea4C  
rgb(250, 149, 234, 60%) #fa95ea99  
rgb(250, 149, 234, 80%) #fa95eaCC  
rgb(250, 149, 234, 100%) #fa95eaFF  

Saturated and desaturated colors of #fa95ea

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

#fa95ea Color Usage In CSS

 body {
    color: #fa95ea;
    }
 p {
    color: rgb(250, 149, 234);
    }
 header {
    border-bottom:1px solid #fa95ea;
    }
Recent Random Colors