Random Color Generator

#fef4e7 Color

Color Codes
Hex Code #fef4e7
RGB Code rgb(254, 244, 231)
HSL Code hsl(34, 92%, 95%)

#fef4e7 Color Syntax

rgb()

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

 main {
    background-color: rgb(254, 244, 231);
   }

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(34, 92%, 95%);
  }

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

RGB Code Hex Code Preview
rgb(254, 244, 231, 10%) #fef4e71a  
rgb(254, 244, 231, 20%) #fef4e733  
rgb(254, 244, 231, 40%) #fef4e74C  
rgb(254, 244, 231, 60%) #fef4e799  
rgb(254, 244, 231, 80%) #fef4e7CC  
rgb(254, 244, 231, 100%) #fef4e7FF  

Saturated and desaturated colors of #fef4e7

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

#fef4e7 Color Usage In CSS

 body {
    color: #fef4e7;
    }
 p {
    color: rgb(254, 244, 231);
    }
 header {
    border-bottom:1px solid #fef4e7;
    }
Recent Random Colors