Random Color Generator

#ca32ed Color

Color Codes
Hex Code #ca32ed
RGB Code rgb(202, 50, 237)
HSL Code hsl(289, 84%, 56%)

#ca32ed Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 50, 237);
   }

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, 84%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(202, 50, 237, 10%) #ca32ed1a  
rgb(202, 50, 237, 20%) #ca32ed33  
rgb(202, 50, 237, 40%) #ca32ed4C  
rgb(202, 50, 237, 60%) #ca32ed99  
rgb(202, 50, 237, 80%) #ca32edCC  
rgb(202, 50, 237, 100%) #ca32edFF  

Saturated and desaturated colors of #ca32ed

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

#ca32ed Color Usage In CSS

 body {
    color: #ca32ed;
    }
 p {
    color: rgb(202, 50, 237);
    }
 header {
    border-bottom:1px solid #ca32ed;
    }
Recent Random Colors