Random Color Generator

#714c89 Color

Color Codes
Hex Code #714c89
RGB Code rgb(113, 76, 137)
HSL Code hsl(276, 29%, 42%)

#714c89 Color Syntax

rgb()

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

 main {
    background-color: rgb(113, 76, 137);
   }

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(276, 29%, 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 #714c89

RGB Code Hex Code Preview
rgb(113, 76, 137, 10%) #714c891a  
rgb(113, 76, 137, 20%) #714c8933  
rgb(113, 76, 137, 40%) #714c894C  
rgb(113, 76, 137, 60%) #714c8999  
rgb(113, 76, 137, 80%) #714c89CC  
rgb(113, 76, 137, 100%) #714c89FF  

Saturated and desaturated colors of #714c89

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

#714c89 Color Usage In CSS

 body {
    color: #714c89;
    }
 p {
    color: rgb(113, 76, 137);
    }
 header {
    border-bottom:1px solid #714c89;
    }
Recent Random Colors