Random Color Generator

#fe70d6 Color

Color Codes
Hex Code #fe70d6
RGB Code rgb(254, 112, 214)
HSL Code hsl(317, 99%, 72%)

#fe70d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(254, 112, 214);
   }

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(317, 99%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(254, 112, 214, 10%) #fe70d61a  
rgb(254, 112, 214, 20%) #fe70d633  
rgb(254, 112, 214, 40%) #fe70d64C  
rgb(254, 112, 214, 60%) #fe70d699  
rgb(254, 112, 214, 80%) #fe70d6CC  
rgb(254, 112, 214, 100%) #fe70d6FF  

Saturated and desaturated colors of #fe70d6

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

#fe70d6 Color Usage In CSS

 body {
    color: #fe70d6;
    }
 p {
    color: rgb(254, 112, 214);
    }
 header {
    border-bottom:1px solid #fe70d6;
    }
Recent Random Colors