Random Color Generator

#7a5597 Color

Color Codes
Hex Code #7a5597
RGB Code rgb(122, 85, 151)
HSL Code hsl(274, 28%, 46%)

#7a5597 Color Syntax

rgb()

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

 main {
    background-color: rgb(122, 85, 151);
   }

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(274, 28%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(122, 85, 151, 10%) #7a55971a  
rgb(122, 85, 151, 20%) #7a559733  
rgb(122, 85, 151, 40%) #7a55974C  
rgb(122, 85, 151, 60%) #7a559799  
rgb(122, 85, 151, 80%) #7a5597CC  
rgb(122, 85, 151, 100%) #7a5597FF  

Saturated and desaturated colors of #7a5597

HSL Code Preview
hsl(274, 10%, 46%)  
hsl(274, 20%, 46%)  
hsl(274, 40%, 46%)  
hsl(274, 60%, 46%)  
hsl(274, 80%, 46%)  
hsl(274, 100%, 46%)  

#7a5597 Color Usage In CSS

 body {
    color: #7a5597;
    }
 p {
    color: rgb(122, 85, 151);
    }
 header {
    border-bottom:1px solid #7a5597;
    }
Recent Random Colors