Random Color Generator

#e46485 Color

Color Codes
Hex Code #e46485
RGB Code rgb(228, 100, 133)
HSL Code hsl(345, 70%, 64%)

#e46485 Color Syntax

rgb()

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

 main {
    background-color: rgb(228, 100, 133);
   }

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(345, 70%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(228, 100, 133, 10%) #e464851a  
rgb(228, 100, 133, 20%) #e4648533  
rgb(228, 100, 133, 40%) #e464854C  
rgb(228, 100, 133, 60%) #e4648599  
rgb(228, 100, 133, 80%) #e46485CC  
rgb(228, 100, 133, 100%) #e46485FF  

Saturated and desaturated colors of #e46485

HSL Code Preview
hsl(345, 10%, 64%)  
hsl(345, 20%, 64%)  
hsl(345, 40%, 64%)  
hsl(345, 60%, 64%)  
hsl(345, 80%, 64%)  
hsl(345, 100%, 64%)  

#e46485 Color Usage In CSS

 body {
    color: #e46485;
    }
 p {
    color: rgb(228, 100, 133);
    }
 header {
    border-bottom:1px solid #e46485;
    }
Recent Random Colors