Random Color Generator

#dc50eb Color

Color Codes
Hex Code #dc50eb
RGB Code rgb(220, 80, 235)
HSL Code hsl(294, 79%, 62%)

#dc50eb Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 80, 235);
   }

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, 79%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(220, 80, 235, 10%) #dc50eb1a  
rgb(220, 80, 235, 20%) #dc50eb33  
rgb(220, 80, 235, 40%) #dc50eb4C  
rgb(220, 80, 235, 60%) #dc50eb99  
rgb(220, 80, 235, 80%) #dc50ebCC  
rgb(220, 80, 235, 100%) #dc50ebFF  

Saturated and desaturated colors of #dc50eb

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

#dc50eb Color Usage In CSS

 body {
    color: #dc50eb;
    }
 p {
    color: rgb(220, 80, 235);
    }
 header {
    border-bottom:1px solid #dc50eb;
    }
Recent Random Colors