Random Color Generator

#d34fcb Color

Color Codes
Hex Code #d34fcb
RGB Code rgb(211, 79, 203)
HSL Code hsl(304, 60%, 57%)

#d34fcb Color Syntax

rgb()

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

 main {
    background-color: rgb(211, 79, 203);
   }

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(304, 60%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(211, 79, 203, 10%) #d34fcb1a  
rgb(211, 79, 203, 20%) #d34fcb33  
rgb(211, 79, 203, 40%) #d34fcb4C  
rgb(211, 79, 203, 60%) #d34fcb99  
rgb(211, 79, 203, 80%) #d34fcbCC  
rgb(211, 79, 203, 100%) #d34fcbFF  

Saturated and desaturated colors of #d34fcb

HSL Code Preview
hsl(304, 10%, 57%)  
hsl(304, 20%, 57%)  
hsl(304, 40%, 57%)  
hsl(304, 60%, 57%)  
hsl(304, 80%, 57%)  
hsl(304, 100%, 57%)  

#d34fcb Color Usage In CSS

 body {
    color: #d34fcb;
    }
 p {
    color: rgb(211, 79, 203);
    }
 header {
    border-bottom:1px solid #d34fcb;
    }
Recent Random Colors