Random Color Generator

#fe2fb0 Color

Color Codes
Hex Code #fe2fb0
RGB Code rgb(254, 47, 176)
HSL Code hsl(323, 99%, 59%)

#fe2fb0 Color Syntax

rgb()

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

 main {
    background-color: rgb(254, 47, 176);
   }

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(323, 99%, 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 #fe2fb0

RGB Code Hex Code Preview
rgb(254, 47, 176, 10%) #fe2fb01a  
rgb(254, 47, 176, 20%) #fe2fb033  
rgb(254, 47, 176, 40%) #fe2fb04C  
rgb(254, 47, 176, 60%) #fe2fb099  
rgb(254, 47, 176, 80%) #fe2fb0CC  
rgb(254, 47, 176, 100%) #fe2fb0FF  

Saturated and desaturated colors of #fe2fb0

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

#fe2fb0 Color Usage In CSS

 body {
    color: #fe2fb0;
    }
 p {
    color: rgb(254, 47, 176);
    }
 header {
    border-bottom:1px solid #fe2fb0;
    }
Recent Random Colors