Random Color Generator

#ed74a6 Color

Color Codes
Hex Code #ed74a6
RGB Code rgb(237, 116, 166)
HSL Code hsl(335, 77%, 69%)

#ed74a6 Color Syntax

rgb()

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

 main {
    background-color: rgb(237, 116, 166);
   }

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(335, 77%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(237, 116, 166, 10%) #ed74a61a  
rgb(237, 116, 166, 20%) #ed74a633  
rgb(237, 116, 166, 40%) #ed74a64C  
rgb(237, 116, 166, 60%) #ed74a699  
rgb(237, 116, 166, 80%) #ed74a6CC  
rgb(237, 116, 166, 100%) #ed74a6FF  

Saturated and desaturated colors of #ed74a6

HSL Code Preview
hsl(335, 10%, 69%)  
hsl(335, 20%, 69%)  
hsl(335, 40%, 69%)  
hsl(335, 60%, 69%)  
hsl(335, 80%, 69%)  
hsl(335, 100%, 69%)  

#ed74a6 Color Usage In CSS

 body {
    color: #ed74a6;
    }
 p {
    color: rgb(237, 116, 166);
    }
 header {
    border-bottom:1px solid #ed74a6;
    }
Recent Random Colors