Random Color Generator

#7b5aaf Color

Color Codes
Hex Code #7b5aaf
RGB Code rgb(123, 90, 175)
HSL Code hsl(263, 35%, 52%)

#7b5aaf Color Syntax

rgb()

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

 main {
    background-color: rgb(123, 90, 175);
   }

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(263, 35%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(123, 90, 175, 10%) #7b5aaf1a  
rgb(123, 90, 175, 20%) #7b5aaf33  
rgb(123, 90, 175, 40%) #7b5aaf4C  
rgb(123, 90, 175, 60%) #7b5aaf99  
rgb(123, 90, 175, 80%) #7b5aafCC  
rgb(123, 90, 175, 100%) #7b5aafFF  

Saturated and desaturated colors of #7b5aaf

HSL Code Preview
hsl(263, 10%, 52%)  
hsl(263, 20%, 52%)  
hsl(263, 40%, 52%)  
hsl(263, 60%, 52%)  
hsl(263, 80%, 52%)  
hsl(263, 100%, 52%)  

#7b5aaf Color Usage In CSS

 body {
    color: #7b5aaf;
    }
 p {
    color: rgb(123, 90, 175);
    }
 header {
    border-bottom:1px solid #7b5aaf;
    }
Recent Random Colors