Random Color Generator

#fe9ba4 Color

Color Codes
Hex Code #fe9ba4
RGB Code rgb(254, 155, 164)
HSL Code hsl(355, 98%, 80%)

#fe9ba4 Color Syntax

rgb()

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

 main {
    background-color: rgb(254, 155, 164);
   }

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(355, 98%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(254, 155, 164, 10%) #fe9ba41a  
rgb(254, 155, 164, 20%) #fe9ba433  
rgb(254, 155, 164, 40%) #fe9ba44C  
rgb(254, 155, 164, 60%) #fe9ba499  
rgb(254, 155, 164, 80%) #fe9ba4CC  
rgb(254, 155, 164, 100%) #fe9ba4FF  

Saturated and desaturated colors of #fe9ba4

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

#fe9ba4 Color Usage In CSS

 body {
    color: #fe9ba4;
    }
 p {
    color: rgb(254, 155, 164);
    }
 header {
    border-bottom:1px solid #fe9ba4;
    }
Recent Random Colors