Random Color Generator

#7e4adc Color

Color Codes
Hex Code #7e4adc
RGB Code rgb(126, 74, 220)
HSL Code hsl(261, 68%, 58%)

#7e4adc Color Syntax

rgb()

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

 main {
    background-color: rgb(126, 74, 220);
   }

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(261, 68%, 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 #7e4adc

RGB Code Hex Code Preview
rgb(126, 74, 220, 10%) #7e4adc1a  
rgb(126, 74, 220, 20%) #7e4adc33  
rgb(126, 74, 220, 40%) #7e4adc4C  
rgb(126, 74, 220, 60%) #7e4adc99  
rgb(126, 74, 220, 80%) #7e4adcCC  
rgb(126, 74, 220, 100%) #7e4adcFF  

Saturated and desaturated colors of #7e4adc

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

#7e4adc Color Usage In CSS

 body {
    color: #7e4adc;
    }
 p {
    color: rgb(126, 74, 220);
    }
 header {
    border-bottom:1px solid #7e4adc;
    }
Recent Random Colors