Random Color Generator

#f5d2e5 Color

Color Codes
Hex Code #f5d2e5
RGB Code rgb(245, 210, 229)
HSL Code hsl(327, 64%, 89%)

#f5d2e5 Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 210, 229);
   }

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(327, 64%, 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 #f5d2e5

RGB Code Hex Code Preview
rgb(245, 210, 229, 10%) #f5d2e51a  
rgb(245, 210, 229, 20%) #f5d2e533  
rgb(245, 210, 229, 40%) #f5d2e54C  
rgb(245, 210, 229, 60%) #f5d2e599  
rgb(245, 210, 229, 80%) #f5d2e5CC  
rgb(245, 210, 229, 100%) #f5d2e5FF  

Saturated and desaturated colors of #f5d2e5

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

#f5d2e5 Color Usage In CSS

 body {
    color: #f5d2e5;
    }
 p {
    color: rgb(245, 210, 229);
    }
 header {
    border-bottom:1px solid #f5d2e5;
    }
Recent Random Colors