Random Color Generator

#826ec0 Color

Color Codes
Hex Code #826ec0
RGB Code rgb(130, 110, 192)
HSL Code hsl(255, 39%, 59%)

#826ec0 Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 110, 192);
   }

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(255, 39%, 59%);
  }

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 #826ec0

RGB Code Hex Code Preview
rgb(130, 110, 192, 10%) #826ec01a  
rgb(130, 110, 192, 20%) #826ec033  
rgb(130, 110, 192, 40%) #826ec04C  
rgb(130, 110, 192, 60%) #826ec099  
rgb(130, 110, 192, 80%) #826ec0CC  
rgb(130, 110, 192, 100%) #826ec0FF  

Saturated and desaturated colors of #826ec0

HSL Code Preview
hsl(255, 10%, 59%)  
hsl(255, 20%, 59%)  
hsl(255, 40%, 59%)  
hsl(255, 60%, 59%)  
hsl(255, 80%, 59%)  
hsl(255, 100%, 59%)  

#826ec0 Color Usage In CSS

 body {
    color: #826ec0;
    }
 p {
    color: rgb(130, 110, 192);
    }
 header {
    border-bottom:1px solid #826ec0;
    }
Recent Random Colors