Random Color Generator

#e778b5 Color

Color Codes
Hex Code #e778b5
RGB Code rgb(231, 120, 181)
HSL Code hsl(327, 70%, 69%)

#e778b5 Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 120, 181);
   }

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(327, 70%, 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 #e778b5

RGB Code Hex Code Preview
rgb(231, 120, 181, 10%) #e778b51a  
rgb(231, 120, 181, 20%) #e778b533  
rgb(231, 120, 181, 40%) #e778b54C  
rgb(231, 120, 181, 60%) #e778b599  
rgb(231, 120, 181, 80%) #e778b5CC  
rgb(231, 120, 181, 100%) #e778b5FF  

Saturated and desaturated colors of #e778b5

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

#e778b5 Color Usage In CSS

 body {
    color: #e778b5;
    }
 p {
    color: rgb(231, 120, 181);
    }
 header {
    border-bottom:1px solid #e778b5;
    }
Recent Random Colors