Random Color Generator

#8364d9 Color

Color Codes
Hex Code #8364d9
RGB Code rgb(131, 100, 217)
HSL Code hsl(256, 61%, 62%)

#8364d9 Color Syntax

rgb()

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

 main {
    background-color: rgb(131, 100, 217);
   }

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(256, 61%, 62%);
  }

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 #8364d9

RGB Code Hex Code Preview
rgb(131, 100, 217, 10%) #8364d91a  
rgb(131, 100, 217, 20%) #8364d933  
rgb(131, 100, 217, 40%) #8364d94C  
rgb(131, 100, 217, 60%) #8364d999  
rgb(131, 100, 217, 80%) #8364d9CC  
rgb(131, 100, 217, 100%) #8364d9FF  

Saturated and desaturated colors of #8364d9

HSL Code Preview
hsl(256, 10%, 62%)  
hsl(256, 20%, 62%)  
hsl(256, 40%, 62%)  
hsl(256, 60%, 62%)  
hsl(256, 80%, 62%)  
hsl(256, 100%, 62%)  

#8364d9 Color Usage In CSS

 body {
    color: #8364d9;
    }
 p {
    color: rgb(131, 100, 217);
    }
 header {
    border-bottom:1px solid #8364d9;
    }
Recent Random Colors