Random Color Generator

#fa36eb Color

Color Codes
Hex Code #fa36eb
RGB Code rgb(250, 54, 235)
HSL Code hsl(305, 95%, 60%)

#fa36eb Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 54, 235);
   }

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(305, 95%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(250, 54, 235, 10%) #fa36eb1a  
rgb(250, 54, 235, 20%) #fa36eb33  
rgb(250, 54, 235, 40%) #fa36eb4C  
rgb(250, 54, 235, 60%) #fa36eb99  
rgb(250, 54, 235, 80%) #fa36ebCC  
rgb(250, 54, 235, 100%) #fa36ebFF  

Saturated and desaturated colors of #fa36eb

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

#fa36eb Color Usage In CSS

 body {
    color: #fa36eb;
    }
 p {
    color: rgb(250, 54, 235);
    }
 header {
    border-bottom:1px solid #fa36eb;
    }
Recent Random Colors