Random Color Generator

#7a2087 Color

Color Codes
Hex Code #7a2087
RGB Code rgb(122, 32, 135)
HSL Code hsl(292, 62%, 33%)

#7a2087 Color Syntax

rgb()

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

 main {
    background-color: rgb(122, 32, 135);
   }

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(292, 62%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(122, 32, 135, 10%) #7a20871a  
rgb(122, 32, 135, 20%) #7a208733  
rgb(122, 32, 135, 40%) #7a20874C  
rgb(122, 32, 135, 60%) #7a208799  
rgb(122, 32, 135, 80%) #7a2087CC  
rgb(122, 32, 135, 100%) #7a2087FF  

Saturated and desaturated colors of #7a2087

HSL Code Preview
hsl(292, 10%, 33%)  
hsl(292, 20%, 33%)  
hsl(292, 40%, 33%)  
hsl(292, 60%, 33%)  
hsl(292, 80%, 33%)  
hsl(292, 100%, 33%)  

#7a2087 Color Usage In CSS

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