Random Color Generator

#83649b Color

Color Codes
Hex Code #83649b
RGB Code rgb(131, 100, 155)
HSL Code hsl(274, 22%, 50%)

#83649b Color Syntax

rgb()

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

 main {
    background-color: rgb(131, 100, 155);
   }

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(274, 22%, 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 #83649b

RGB Code Hex Code Preview
rgb(131, 100, 155, 10%) #83649b1a  
rgb(131, 100, 155, 20%) #83649b33  
rgb(131, 100, 155, 40%) #83649b4C  
rgb(131, 100, 155, 60%) #83649b99  
rgb(131, 100, 155, 80%) #83649bCC  
rgb(131, 100, 155, 100%) #83649bFF  

Saturated and desaturated colors of #83649b

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

#83649b Color Usage In CSS

 body {
    color: #83649b;
    }
 p {
    color: rgb(131, 100, 155);
    }
 header {
    border-bottom:1px solid #83649b;
    }
Recent Random Colors