Random Color Generator

#fed4c9 Color

Color Codes
Hex Code #fed4c9
RGB Code rgb(254, 212, 201)
HSL Code hsl(12, 96%, 89%)

#fed4c9 Color Syntax

rgb()

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

 main {
    background-color: rgb(254, 212, 201);
   }

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(12, 96%, 89%);
  }

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

RGB Code Hex Code Preview
rgb(254, 212, 201, 10%) #fed4c91a  
rgb(254, 212, 201, 20%) #fed4c933  
rgb(254, 212, 201, 40%) #fed4c94C  
rgb(254, 212, 201, 60%) #fed4c999  
rgb(254, 212, 201, 80%) #fed4c9CC  
rgb(254, 212, 201, 100%) #fed4c9FF  

Saturated and desaturated colors of #fed4c9

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

#fed4c9 Color Usage In CSS

 body {
    color: #fed4c9;
    }
 p {
    color: rgb(254, 212, 201);
    }
 header {
    border-bottom:1px solid #fed4c9;
    }
Recent Random Colors