Random Color Generator

#ef484d Color

Color Codes
Hex Code #ef484d
RGB Code rgb(239, 72, 77)
HSL Code hsl(358, 84%, 61%)

#ef484d Color Syntax

rgb()

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

 main {
    background-color: rgb(239, 72, 77);
   }

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(358, 84%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(239, 72, 77, 10%) #ef484d1a  
rgb(239, 72, 77, 20%) #ef484d33  
rgb(239, 72, 77, 40%) #ef484d4C  
rgb(239, 72, 77, 60%) #ef484d99  
rgb(239, 72, 77, 80%) #ef484dCC  
rgb(239, 72, 77, 100%) #ef484dFF  

Saturated and desaturated colors of #ef484d

HSL Code Preview
hsl(358, 10%, 61%)  
hsl(358, 20%, 61%)  
hsl(358, 40%, 61%)  
hsl(358, 60%, 61%)  
hsl(358, 80%, 61%)  
hsl(358, 100%, 61%)  

#ef484d Color Usage In CSS

 body {
    color: #ef484d;
    }
 p {
    color: rgb(239, 72, 77);
    }
 header {
    border-bottom:1px solid #ef484d;
    }
Recent Random Colors