Random Color Generator

#64187a Color

Color Codes
Hex Code #64187a
RGB Code rgb(100, 24, 122)
HSL Code hsl(287, 67%, 29%)

#64187a Color Syntax

rgb()

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

 main {
    background-color: rgb(100, 24, 122);
   }

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, 67%, 29%);
  }

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 #64187a

RGB Code Hex Code Preview
rgb(100, 24, 122, 10%) #64187a1a  
rgb(100, 24, 122, 20%) #64187a33  
rgb(100, 24, 122, 40%) #64187a4C  
rgb(100, 24, 122, 60%) #64187a99  
rgb(100, 24, 122, 80%) #64187aCC  
rgb(100, 24, 122, 100%) #64187aFF  

Saturated and desaturated colors of #64187a

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

#64187a Color Usage In CSS

 body {
    color: #64187a;
    }
 p {
    color: rgb(100, 24, 122);
    }
 header {
    border-bottom:1px solid #64187a;
    }
Recent Random Colors