Random Color Generator

#645ef7 Color

Color Codes
Hex Code #645ef7
RGB Code rgb(100, 94, 247)
HSL Code hsl(242, 91%, 67%)

#645ef7 Color Syntax

rgb()

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

 main {
    background-color: rgb(100, 94, 247);
   }

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(242, 91%, 67%);
  }

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 #645ef7

RGB Code Hex Code Preview
rgb(100, 94, 247, 10%) #645ef71a  
rgb(100, 94, 247, 20%) #645ef733  
rgb(100, 94, 247, 40%) #645ef74C  
rgb(100, 94, 247, 60%) #645ef799  
rgb(100, 94, 247, 80%) #645ef7CC  
rgb(100, 94, 247, 100%) #645ef7FF  

Saturated and desaturated colors of #645ef7

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

#645ef7 Color Usage In CSS

 body {
    color: #645ef7;
    }
 p {
    color: rgb(100, 94, 247);
    }
 header {
    border-bottom:1px solid #645ef7;
    }
Recent Random Colors