Random Color Generator

#6a4561 Color

Color Codes
Hex Code #6a4561
RGB Code rgb(106, 69, 97)
HSL Code hsl(315, 21%, 34%)

#6a4561 Color Syntax

rgb()

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

 main {
    background-color: rgb(106, 69, 97);
   }

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(315, 21%, 34%);
  }

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

RGB Code Hex Code Preview
rgb(106, 69, 97, 10%) #6a45611a  
rgb(106, 69, 97, 20%) #6a456133  
rgb(106, 69, 97, 40%) #6a45614C  
rgb(106, 69, 97, 60%) #6a456199  
rgb(106, 69, 97, 80%) #6a4561CC  
rgb(106, 69, 97, 100%) #6a4561FF  

Saturated and desaturated colors of #6a4561

HSL Code Preview
hsl(315, 10%, 34%)  
hsl(315, 20%, 34%)  
hsl(315, 40%, 34%)  
hsl(315, 60%, 34%)  
hsl(315, 80%, 34%)  
hsl(315, 100%, 34%)  

#6a4561 Color Usage In CSS

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