Random Color Generator

#6b7591 Color

Color Codes
Hex Code #6b7591
RGB Code rgb(107, 117, 145)
HSL Code hsl(224, 15%, 49%)

#6b7591 Color Syntax

rgb()

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

 main {
    background-color: rgb(107, 117, 145);
   }

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(224, 15%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(107, 117, 145, 10%) #6b75911a  
rgb(107, 117, 145, 20%) #6b759133  
rgb(107, 117, 145, 40%) #6b75914C  
rgb(107, 117, 145, 60%) #6b759199  
rgb(107, 117, 145, 80%) #6b7591CC  
rgb(107, 117, 145, 100%) #6b7591FF  

Saturated and desaturated colors of #6b7591

HSL Code Preview
hsl(224, 10%, 49%)  
hsl(224, 20%, 49%)  
hsl(224, 40%, 49%)  
hsl(224, 60%, 49%)  
hsl(224, 80%, 49%)  
hsl(224, 100%, 49%)  

#6b7591 Color Usage In CSS

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