Random Color Generator

#77294a Color

Color Codes
Hex Code #77294a
RGB Code rgb(119, 41, 74)
HSL Code hsl(335, 49%, 31%)

#77294a Color Syntax

rgb()

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

 main {
    background-color: rgb(119, 41, 74);
   }

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(335, 49%, 31%);
  }

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 #77294a

RGB Code Hex Code Preview
rgb(119, 41, 74, 10%) #77294a1a  
rgb(119, 41, 74, 20%) #77294a33  
rgb(119, 41, 74, 40%) #77294a4C  
rgb(119, 41, 74, 60%) #77294a99  
rgb(119, 41, 74, 80%) #77294aCC  
rgb(119, 41, 74, 100%) #77294aFF  

Saturated and desaturated colors of #77294a

HSL Code Preview
hsl(335, 10%, 31%)  
hsl(335, 20%, 31%)  
hsl(335, 40%, 31%)  
hsl(335, 60%, 31%)  
hsl(335, 80%, 31%)  
hsl(335, 100%, 31%)  

#77294a Color Usage In CSS

 body {
    color: #77294a;
    }
 p {
    color: rgb(119, 41, 74);
    }
 header {
    border-bottom:1px solid #77294a;
    }
Recent Random Colors