Random Color Generator

#fe84bd Color

Color Codes
Hex Code #fe84bd
RGB Code rgb(254, 132, 189)
HSL Code hsl(332, 98%, 76%)

#fe84bd Color Syntax

rgb()

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

 main {
    background-color: rgb(254, 132, 189);
   }

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(332, 98%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(254, 132, 189, 10%) #fe84bd1a  
rgb(254, 132, 189, 20%) #fe84bd33  
rgb(254, 132, 189, 40%) #fe84bd4C  
rgb(254, 132, 189, 60%) #fe84bd99  
rgb(254, 132, 189, 80%) #fe84bdCC  
rgb(254, 132, 189, 100%) #fe84bdFF  

Saturated and desaturated colors of #fe84bd

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

#fe84bd Color Usage In CSS

 body {
    color: #fe84bd;
    }
 p {
    color: rgb(254, 132, 189);
    }
 header {
    border-bottom:1px solid #fe84bd;
    }
Recent Random Colors