Random Color Generator

#dd95cb Color

Color Codes
Hex Code #dd95cb
RGB Code rgb(221, 149, 203)
HSL Code hsl(315, 51%, 73%)

#dd95cb Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 149, 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(315, 51%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(221, 149, 203, 10%) #dd95cb1a  
rgb(221, 149, 203, 20%) #dd95cb33  
rgb(221, 149, 203, 40%) #dd95cb4C  
rgb(221, 149, 203, 60%) #dd95cb99  
rgb(221, 149, 203, 80%) #dd95cbCC  
rgb(221, 149, 203, 100%) #dd95cbFF  

Saturated and desaturated colors of #dd95cb

HSL Code Preview
hsl(315, 10%, 73%)  
hsl(315, 20%, 73%)  
hsl(315, 40%, 73%)  
hsl(315, 60%, 73%)  
hsl(315, 80%, 73%)  
hsl(315, 100%, 73%)  

#dd95cb Color Usage In CSS

 body {
    color: #dd95cb;
    }
 p {
    color: rgb(221, 149, 203);
    }
 header {
    border-bottom:1px solid #dd95cb;
    }
Recent Random Colors