Random Color Generator

#6e6388 Color

Color Codes
Hex Code #6e6388
RGB Code rgb(110, 99, 136)
HSL Code hsl(258, 16%, 46%)

#6e6388 Color Syntax

rgb()

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

 main {
    background-color: rgb(110, 99, 136);
   }

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(258, 16%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(110, 99, 136, 10%) #6e63881a  
rgb(110, 99, 136, 20%) #6e638833  
rgb(110, 99, 136, 40%) #6e63884C  
rgb(110, 99, 136, 60%) #6e638899  
rgb(110, 99, 136, 80%) #6e6388CC  
rgb(110, 99, 136, 100%) #6e6388FF  

Saturated and desaturated colors of #6e6388

HSL Code Preview
hsl(258, 10%, 46%)  
hsl(258, 20%, 46%)  
hsl(258, 40%, 46%)  
hsl(258, 60%, 46%)  
hsl(258, 80%, 46%)  
hsl(258, 100%, 46%)  

#6e6388 Color Usage In CSS

 body {
    color: #6e6388;
    }
 p {
    color: rgb(110, 99, 136);
    }
 header {
    border-bottom:1px solid #6e6388;
    }
Recent Random Colors