Random Color Generator

#fd748c Color

Color Codes
Hex Code #fd748c
RGB Code rgb(253, 116, 140)
HSL Code hsl(349, 97%, 72%)

#fd748c Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 116, 140);
   }

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(349, 97%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(253, 116, 140, 10%) #fd748c1a  
rgb(253, 116, 140, 20%) #fd748c33  
rgb(253, 116, 140, 40%) #fd748c4C  
rgb(253, 116, 140, 60%) #fd748c99  
rgb(253, 116, 140, 80%) #fd748cCC  
rgb(253, 116, 140, 100%) #fd748cFF  

Saturated and desaturated colors of #fd748c

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

#fd748c Color Usage In CSS

 body {
    color: #fd748c;
    }
 p {
    color: rgb(253, 116, 140);
    }
 header {
    border-bottom:1px solid #fd748c;
    }
Recent Random Colors