Random Color Generator

#644aad Color

Color Codes
Hex Code #644aad
RGB Code rgb(100, 74, 173)
HSL Code hsl(256, 40%, 48%)

#644aad Color Syntax

rgb()

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

 main {
    background-color: rgb(100, 74, 173);
   }

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(256, 40%, 48%);
  }

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 #644aad

RGB Code Hex Code Preview
rgb(100, 74, 173, 10%) #644aad1a  
rgb(100, 74, 173, 20%) #644aad33  
rgb(100, 74, 173, 40%) #644aad4C  
rgb(100, 74, 173, 60%) #644aad99  
rgb(100, 74, 173, 80%) #644aadCC  
rgb(100, 74, 173, 100%) #644aadFF  

Saturated and desaturated colors of #644aad

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

#644aad Color Usage In CSS

 body {
    color: #644aad;
    }
 p {
    color: rgb(100, 74, 173);
    }
 header {
    border-bottom:1px solid #644aad;
    }
Recent Random Colors