Random Color Generator

#84708f Color

Color Codes
Hex Code #84708f
RGB Code rgb(132, 112, 143)
HSL Code hsl(279, 12%, 50%)

#84708f Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 112, 143);
   }

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(279, 12%, 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 #84708f

RGB Code Hex Code Preview
rgb(132, 112, 143, 10%) #84708f1a  
rgb(132, 112, 143, 20%) #84708f33  
rgb(132, 112, 143, 40%) #84708f4C  
rgb(132, 112, 143, 60%) #84708f99  
rgb(132, 112, 143, 80%) #84708fCC  
rgb(132, 112, 143, 100%) #84708fFF  

Saturated and desaturated colors of #84708f

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

#84708f Color Usage In CSS

 body {
    color: #84708f;
    }
 p {
    color: rgb(132, 112, 143);
    }
 header {
    border-bottom:1px solid #84708f;
    }
Recent Random Colors