Random Color Generator

#7a71b5 Color

Color Codes
Hex Code #7a71b5
RGB Code rgb(122, 113, 181)
HSL Code hsl(248, 31%, 58%)

#7a71b5 Color Syntax

rgb()

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

 main {
    background-color: rgb(122, 113, 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(248, 31%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(122, 113, 181, 10%) #7a71b51a  
rgb(122, 113, 181, 20%) #7a71b533  
rgb(122, 113, 181, 40%) #7a71b54C  
rgb(122, 113, 181, 60%) #7a71b599  
rgb(122, 113, 181, 80%) #7a71b5CC  
rgb(122, 113, 181, 100%) #7a71b5FF  

Saturated and desaturated colors of #7a71b5

HSL Code Preview
hsl(248, 10%, 58%)  
hsl(248, 20%, 58%)  
hsl(248, 40%, 58%)  
hsl(248, 60%, 58%)  
hsl(248, 80%, 58%)  
hsl(248, 100%, 58%)  

#7a71b5 Color Usage In CSS

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