Random Color Generator

#6a6bda Color

Color Codes
Hex Code #6a6bda
RGB Code rgb(106, 107, 218)
HSL Code hsl(239, 60%, 64%)

#6a6bda Color Syntax

rgb()

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

 main {
    background-color: rgb(106, 107, 218);
   }

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(239, 60%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(106, 107, 218, 10%) #6a6bda1a  
rgb(106, 107, 218, 20%) #6a6bda33  
rgb(106, 107, 218, 40%) #6a6bda4C  
rgb(106, 107, 218, 60%) #6a6bda99  
rgb(106, 107, 218, 80%) #6a6bdaCC  
rgb(106, 107, 218, 100%) #6a6bdaFF  

Saturated and desaturated colors of #6a6bda

HSL Code Preview
hsl(239, 10%, 64%)  
hsl(239, 20%, 64%)  
hsl(239, 40%, 64%)  
hsl(239, 60%, 64%)  
hsl(239, 80%, 64%)  
hsl(239, 100%, 64%)  

#6a6bda Color Usage In CSS

 body {
    color: #6a6bda;
    }
 p {
    color: rgb(106, 107, 218);
    }
 header {
    border-bottom:1px solid #6a6bda;
    }
Recent Random Colors