Random Color Generator

#ff2cd6 Color

Color Codes
Hex Code #ff2cd6
RGB Code rgb(255, 44, 214)
HSL Code hsl(312, 100%, 59%)

#ff2cd6 Color Syntax

rgb()

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

 main {
    background-color: rgb(255, 44, 214);
   }

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(312, 100%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(255, 44, 214, 10%) #ff2cd61a  
rgb(255, 44, 214, 20%) #ff2cd633  
rgb(255, 44, 214, 40%) #ff2cd64C  
rgb(255, 44, 214, 60%) #ff2cd699  
rgb(255, 44, 214, 80%) #ff2cd6CC  
rgb(255, 44, 214, 100%) #ff2cd6FF  

Saturated and desaturated colors of #ff2cd6

HSL Code Preview
hsl(312, 10%, 59%)  
hsl(312, 20%, 59%)  
hsl(312, 40%, 59%)  
hsl(312, 60%, 59%)  
hsl(312, 80%, 59%)  
hsl(312, 100%, 59%)  

#ff2cd6 Color Usage In CSS

 body {
    color: #ff2cd6;
    }
 p {
    color: rgb(255, 44, 214);
    }
 header {
    border-bottom:1px solid #ff2cd6;
    }
Recent Random Colors