Random Color Generator

#806ed5 Color

Color Codes
Hex Code #806ed5
RGB Code rgb(128, 110, 213)
HSL Code hsl(250, 55%, 63%)

#806ed5 Color Syntax

rgb()

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

 main {
    background-color: rgb(128, 110, 213);
   }

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(250, 55%, 63%);
  }

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 #806ed5

RGB Code Hex Code Preview
rgb(128, 110, 213, 10%) #806ed51a  
rgb(128, 110, 213, 20%) #806ed533  
rgb(128, 110, 213, 40%) #806ed54C  
rgb(128, 110, 213, 60%) #806ed599  
rgb(128, 110, 213, 80%) #806ed5CC  
rgb(128, 110, 213, 100%) #806ed5FF  

Saturated and desaturated colors of #806ed5

HSL Code Preview
hsl(250, 10%, 63%)  
hsl(250, 20%, 63%)  
hsl(250, 40%, 63%)  
hsl(250, 60%, 63%)  
hsl(250, 80%, 63%)  
hsl(250, 100%, 63%)  

#806ed5 Color Usage In CSS

 body {
    color: #806ed5;
    }
 p {
    color: rgb(128, 110, 213);
    }
 header {
    border-bottom:1px solid #806ed5;
    }
Recent Random Colors