Random Color Generator

#743d83 Color

Color Codes
Hex Code #743d83
RGB Code rgb(116, 61, 131)
HSL Code hsl(287, 36%, 38%)

#743d83 Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 61, 131);
   }

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(287, 36%, 38%);
  }

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 #743d83

RGB Code Hex Code Preview
rgb(116, 61, 131, 10%) #743d831a  
rgb(116, 61, 131, 20%) #743d8333  
rgb(116, 61, 131, 40%) #743d834C  
rgb(116, 61, 131, 60%) #743d8399  
rgb(116, 61, 131, 80%) #743d83CC  
rgb(116, 61, 131, 100%) #743d83FF  

Saturated and desaturated colors of #743d83

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

#743d83 Color Usage In CSS

 body {
    color: #743d83;
    }
 p {
    color: rgb(116, 61, 131);
    }
 header {
    border-bottom:1px solid #743d83;
    }
Recent Random Colors