Random Color Generator

#ed525a Color

Color Codes
Hex Code #ed525a
RGB Code rgb(237, 82, 90)
HSL Code hsl(357, 81%, 63%)

#ed525a Color Syntax

rgb()

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

 main {
    background-color: rgb(237, 82, 90);
   }

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(357, 81%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(237, 82, 90, 10%) #ed525a1a  
rgb(237, 82, 90, 20%) #ed525a33  
rgb(237, 82, 90, 40%) #ed525a4C  
rgb(237, 82, 90, 60%) #ed525a99  
rgb(237, 82, 90, 80%) #ed525aCC  
rgb(237, 82, 90, 100%) #ed525aFF  

Saturated and desaturated colors of #ed525a

HSL Code Preview
hsl(357, 10%, 63%)  
hsl(357, 20%, 63%)  
hsl(357, 40%, 63%)  
hsl(357, 60%, 63%)  
hsl(357, 80%, 63%)  
hsl(357, 100%, 63%)  

#ed525a Color Usage In CSS

 body {
    color: #ed525a;
    }
 p {
    color: rgb(237, 82, 90);
    }
 header {
    border-bottom:1px solid #ed525a;
    }
Recent Random Colors