Random Color Generator

#671182 Color

Color Codes
Hex Code #671182
RGB Code rgb(103, 17, 130)
HSL Code hsl(286, 77%, 29%)

#671182 Color Syntax

rgb()

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

 main {
    background-color: rgb(103, 17, 130);
   }

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(286, 77%, 29%);
  }

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 #671182

RGB Code Hex Code Preview
rgb(103, 17, 130, 10%) #6711821a  
rgb(103, 17, 130, 20%) #67118233  
rgb(103, 17, 130, 40%) #6711824C  
rgb(103, 17, 130, 60%) #67118299  
rgb(103, 17, 130, 80%) #671182CC  
rgb(103, 17, 130, 100%) #671182FF  

Saturated and desaturated colors of #671182

HSL Code Preview
hsl(286, 10%, 29%)  
hsl(286, 20%, 29%)  
hsl(286, 40%, 29%)  
hsl(286, 60%, 29%)  
hsl(286, 80%, 29%)  
hsl(286, 100%, 29%)  

#671182 Color Usage In CSS

 body {
    color: #671182;
    }
 p {
    color: rgb(103, 17, 130);
    }
 header {
    border-bottom:1px solid #671182;
    }
Recent Random Colors