Random Color Generator

#705e78 Color

Color Codes
Hex Code #705e78
RGB Code rgb(112, 94, 120)
HSL Code hsl(282, 12%, 42%)

#705e78 Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 94, 120);
   }

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(282, 12%, 42%);
  }

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 #705e78

RGB Code Hex Code Preview
rgb(112, 94, 120, 10%) #705e781a  
rgb(112, 94, 120, 20%) #705e7833  
rgb(112, 94, 120, 40%) #705e784C  
rgb(112, 94, 120, 60%) #705e7899  
rgb(112, 94, 120, 80%) #705e78CC  
rgb(112, 94, 120, 100%) #705e78FF  

Saturated and desaturated colors of #705e78

HSL Code Preview
hsl(282, 10%, 42%)  
hsl(282, 20%, 42%)  
hsl(282, 40%, 42%)  
hsl(282, 60%, 42%)  
hsl(282, 80%, 42%)  
hsl(282, 100%, 42%)  

#705e78 Color Usage In CSS

 body {
    color: #705e78;
    }
 p {
    color: rgb(112, 94, 120);
    }
 header {
    border-bottom:1px solid #705e78;
    }
Recent Random Colors