Random Color Generator

#e82a50 Color

Color Codes
Hex Code #e82a50
RGB Code rgb(232, 42, 80)
HSL Code hsl(348, 81%, 54%)

#e82a50 Color Syntax

rgb()

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

 main {
    background-color: rgb(232, 42, 80);
   }

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(348, 81%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(232, 42, 80, 10%) #e82a501a  
rgb(232, 42, 80, 20%) #e82a5033  
rgb(232, 42, 80, 40%) #e82a504C  
rgb(232, 42, 80, 60%) #e82a5099  
rgb(232, 42, 80, 80%) #e82a50CC  
rgb(232, 42, 80, 100%) #e82a50FF  

Saturated and desaturated colors of #e82a50

HSL Code Preview
hsl(348, 10%, 54%)  
hsl(348, 20%, 54%)  
hsl(348, 40%, 54%)  
hsl(348, 60%, 54%)  
hsl(348, 80%, 54%)  
hsl(348, 100%, 54%)  

#e82a50 Color Usage In CSS

 body {
    color: #e82a50;
    }
 p {
    color: rgb(232, 42, 80);
    }
 header {
    border-bottom:1px solid #e82a50;
    }
Recent Random Colors