Random Color Generator

#6a7d95 Color

Color Codes
Hex Code #6a7d95
RGB Code rgb(106, 125, 149)
HSL Code hsl(213, 17%, 50%)

#6a7d95 Color Syntax

rgb()

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

 main {
    background-color: rgb(106, 125, 149);
   }

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(213, 17%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(106, 125, 149, 10%) #6a7d951a  
rgb(106, 125, 149, 20%) #6a7d9533  
rgb(106, 125, 149, 40%) #6a7d954C  
rgb(106, 125, 149, 60%) #6a7d9599  
rgb(106, 125, 149, 80%) #6a7d95CC  
rgb(106, 125, 149, 100%) #6a7d95FF  

Saturated and desaturated colors of #6a7d95

HSL Code Preview
hsl(213, 10%, 50%)  
hsl(213, 20%, 50%)  
hsl(213, 40%, 50%)  
hsl(213, 60%, 50%)  
hsl(213, 80%, 50%)  
hsl(213, 100%, 50%)  

#6a7d95 Color Usage In CSS

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