Random Color Generator

#6d76f0 Color

Color Codes
Hex Code #6d76f0
RGB Code rgb(109, 118, 240)
HSL Code hsl(236, 81%, 68%)

#6d76f0 Color Syntax

rgb()

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

 main {
    background-color: rgb(109, 118, 240);
   }

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(236, 81%, 68%);
  }

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 #6d76f0

RGB Code Hex Code Preview
rgb(109, 118, 240, 10%) #6d76f01a  
rgb(109, 118, 240, 20%) #6d76f033  
rgb(109, 118, 240, 40%) #6d76f04C  
rgb(109, 118, 240, 60%) #6d76f099  
rgb(109, 118, 240, 80%) #6d76f0CC  
rgb(109, 118, 240, 100%) #6d76f0FF  

Saturated and desaturated colors of #6d76f0

HSL Code Preview
hsl(236, 10%, 68%)  
hsl(236, 20%, 68%)  
hsl(236, 40%, 68%)  
hsl(236, 60%, 68%)  
hsl(236, 80%, 68%)  
hsl(236, 100%, 68%)  

#6d76f0 Color Usage In CSS

 body {
    color: #6d76f0;
    }
 p {
    color: rgb(109, 118, 240);
    }
 header {
    border-bottom:1px solid #6d76f0;
    }
Recent Random Colors