Random Color Generator

#fe4254 Color

Color Codes
Hex Code #fe4254
RGB Code rgb(254, 66, 84)
HSL Code hsl(354, 99%, 63%)

#fe4254 Color Syntax

rgb()

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

 main {
    background-color: rgb(254, 66, 84);
   }

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(354, 99%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(254, 66, 84, 10%) #fe42541a  
rgb(254, 66, 84, 20%) #fe425433  
rgb(254, 66, 84, 40%) #fe42544C  
rgb(254, 66, 84, 60%) #fe425499  
rgb(254, 66, 84, 80%) #fe4254CC  
rgb(254, 66, 84, 100%) #fe4254FF  

Saturated and desaturated colors of #fe4254

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

#fe4254 Color Usage In CSS

 body {
    color: #fe4254;
    }
 p {
    color: rgb(254, 66, 84);
    }
 header {
    border-bottom:1px solid #fe4254;
    }
Recent Random Colors