Random Color Generator

#ca04e1 Color

Color Codes
Hex Code #ca04e1
RGB Code rgb(202, 04, 225)
HSL Code hsl(294, 97%, 45%)

#ca04e1 Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 04, 225);
   }

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(294, 97%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(202, 04, 225, 10%) #ca04e11a  
rgb(202, 04, 225, 20%) #ca04e133  
rgb(202, 04, 225, 40%) #ca04e14C  
rgb(202, 04, 225, 60%) #ca04e199  
rgb(202, 04, 225, 80%) #ca04e1CC  
rgb(202, 04, 225, 100%) #ca04e1FF  

Saturated and desaturated colors of #ca04e1

HSL Code Preview
hsl(294, 10%, 45%)  
hsl(294, 20%, 45%)  
hsl(294, 40%, 45%)  
hsl(294, 60%, 45%)  
hsl(294, 80%, 45%)  
hsl(294, 100%, 45%)  

#ca04e1 Color Usage In CSS

 body {
    color: #ca04e1;
    }
 p {
    color: rgb(202, 04, 225);
    }
 header {
    border-bottom:1px solid #ca04e1;
    }
Recent Random Colors