Random Color Generator

#ca62e2 Color

Color Codes
Hex Code #ca62e2
RGB Code rgb(202, 98, 226)
HSL Code hsl(289, 69%, 64%)

#ca62e2 Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 98, 226);
   }

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(289, 69%, 64%);
  }

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 #ca62e2

RGB Code Hex Code Preview
rgb(202, 98, 226, 10%) #ca62e21a  
rgb(202, 98, 226, 20%) #ca62e233  
rgb(202, 98, 226, 40%) #ca62e24C  
rgb(202, 98, 226, 60%) #ca62e299  
rgb(202, 98, 226, 80%) #ca62e2CC  
rgb(202, 98, 226, 100%) #ca62e2FF  

Saturated and desaturated colors of #ca62e2

HSL Code Preview
hsl(289, 10%, 64%)  
hsl(289, 20%, 64%)  
hsl(289, 40%, 64%)  
hsl(289, 60%, 64%)  
hsl(289, 80%, 64%)  
hsl(289, 100%, 64%)  

#ca62e2 Color Usage In CSS

 body {
    color: #ca62e2;
    }
 p {
    color: rgb(202, 98, 226);
    }
 header {
    border-bottom:1px solid #ca62e2;
    }
Recent Random Colors