Random Color Generator

#fd79a7 Color

Color Codes
Hex Code #fd79a7
RGB Code rgb(253, 121, 167)
HSL Code hsl(339, 97%, 73%)

#fd79a7 Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 121, 167);
   }

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(339, 97%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(253, 121, 167, 10%) #fd79a71a  
rgb(253, 121, 167, 20%) #fd79a733  
rgb(253, 121, 167, 40%) #fd79a74C  
rgb(253, 121, 167, 60%) #fd79a799  
rgb(253, 121, 167, 80%) #fd79a7CC  
rgb(253, 121, 167, 100%) #fd79a7FF  

Saturated and desaturated colors of #fd79a7

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

#fd79a7 Color Usage In CSS

 body {
    color: #fd79a7;
    }
 p {
    color: rgb(253, 121, 167);
    }
 header {
    border-bottom:1px solid #fd79a7;
    }
Recent Random Colors