Random Color Generator

#745670 Color

Color Codes
Hex Code #745670
RGB Code rgb(116, 86, 112)
HSL Code hsl(308, 15%, 40%)

#745670 Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 86, 112);
   }

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(308, 15%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(116, 86, 112, 10%) #7456701a  
rgb(116, 86, 112, 20%) #74567033  
rgb(116, 86, 112, 40%) #7456704C  
rgb(116, 86, 112, 60%) #74567099  
rgb(116, 86, 112, 80%) #745670CC  
rgb(116, 86, 112, 100%) #745670FF  

Saturated and desaturated colors of #745670

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

#745670 Color Usage In CSS

 body {
    color: #745670;
    }
 p {
    color: rgb(116, 86, 112);
    }
 header {
    border-bottom:1px solid #745670;
    }
Recent Random Colors