Random Color Generator

#cd14cc Color

Color Codes
Hex Code #cd14cc
RGB Code rgb(205, 20, 204)
HSL Code hsl(300, 82%, 44%)

#cd14cc Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 20, 204);
   }

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(300, 82%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(205, 20, 204, 10%) #cd14cc1a  
rgb(205, 20, 204, 20%) #cd14cc33  
rgb(205, 20, 204, 40%) #cd14cc4C  
rgb(205, 20, 204, 60%) #cd14cc99  
rgb(205, 20, 204, 80%) #cd14ccCC  
rgb(205, 20, 204, 100%) #cd14ccFF  

Saturated and desaturated colors of #cd14cc

HSL Code Preview
hsl(300, 10%, 44%)  
hsl(300, 20%, 44%)  
hsl(300, 40%, 44%)  
hsl(300, 60%, 44%)  
hsl(300, 80%, 44%)  
hsl(300, 100%, 44%)  

#cd14cc Color Usage In CSS

 body {
    color: #cd14cc;
    }
 p {
    color: rgb(205, 20, 204);
    }
 header {
    border-bottom:1px solid #cd14cc;
    }
Recent Random Colors