Random Color Generator

#c325ec Color

Color Codes
Hex Code #c325ec
RGB Code rgb(195, 37, 236)
HSL Code hsl(288, 84%, 54%)

#c325ec Color Syntax

rgb()

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

 main {
    background-color: rgb(195, 37, 236);
   }

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(288, 84%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(195, 37, 236, 10%) #c325ec1a  
rgb(195, 37, 236, 20%) #c325ec33  
rgb(195, 37, 236, 40%) #c325ec4C  
rgb(195, 37, 236, 60%) #c325ec99  
rgb(195, 37, 236, 80%) #c325ecCC  
rgb(195, 37, 236, 100%) #c325ecFF  

Saturated and desaturated colors of #c325ec

HSL Code Preview
hsl(288, 10%, 54%)  
hsl(288, 20%, 54%)  
hsl(288, 40%, 54%)  
hsl(288, 60%, 54%)  
hsl(288, 80%, 54%)  
hsl(288, 100%, 54%)  

#c325ec Color Usage In CSS

 body {
    color: #c325ec;
    }
 p {
    color: rgb(195, 37, 236);
    }
 header {
    border-bottom:1px solid #c325ec;
    }
Recent Random Colors