Random Color Generator

#815a86 Color

Color Codes
Hex Code #815a86
RGB Code rgb(129, 90, 134)
HSL Code hsl(293, 20%, 44%)

#815a86 Color Syntax

rgb()

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

 main {
    background-color: rgb(129, 90, 134);
   }

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(293, 20%, 44%);
  }

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 #815a86

RGB Code Hex Code Preview
rgb(129, 90, 134, 10%) #815a861a  
rgb(129, 90, 134, 20%) #815a8633  
rgb(129, 90, 134, 40%) #815a864C  
rgb(129, 90, 134, 60%) #815a8699  
rgb(129, 90, 134, 80%) #815a86CC  
rgb(129, 90, 134, 100%) #815a86FF  

Saturated and desaturated colors of #815a86

HSL Code Preview
hsl(293, 10%, 44%)  
hsl(293, 20%, 44%)  
hsl(293, 40%, 44%)  
hsl(293, 60%, 44%)  
hsl(293, 80%, 44%)  
hsl(293, 100%, 44%)  

#815a86 Color Usage In CSS

 body {
    color: #815a86;
    }
 p {
    color: rgb(129, 90, 134);
    }
 header {
    border-bottom:1px solid #815a86;
    }
Recent Random Colors