Random Color Generator

#563c86 Color

Color Codes
Hex Code #563c86
RGB Code rgb(86, 60, 134)
HSL Code hsl(261, 38%, 38%)

#563c86 Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 60, 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(261, 38%, 38%);
  }

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 #563c86

RGB Code Hex Code Preview
rgb(86, 60, 134, 10%) #563c861a  
rgb(86, 60, 134, 20%) #563c8633  
rgb(86, 60, 134, 40%) #563c864C  
rgb(86, 60, 134, 60%) #563c8699  
rgb(86, 60, 134, 80%) #563c86CC  
rgb(86, 60, 134, 100%) #563c86FF  

Saturated and desaturated colors of #563c86

HSL Code Preview
hsl(261, 10%, 38%)  
hsl(261, 20%, 38%)  
hsl(261, 40%, 38%)  
hsl(261, 60%, 38%)  
hsl(261, 80%, 38%)  
hsl(261, 100%, 38%)  

#563c86 Color Usage In CSS

 body {
    color: #563c86;
    }
 p {
    color: rgb(86, 60, 134);
    }
 header {
    border-bottom:1px solid #563c86;
    }
Recent Random Colors