Random Color Generator

#dcbfd4 Color

Color Codes
Hex Code #dcbfd4
RGB Code rgb(220, 191, 212)
HSL Code hsl(317, 29%, 81%)

#dcbfd4 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 191, 212);
   }

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(317, 29%, 81%);
  }

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

RGB Code Hex Code Preview
rgb(220, 191, 212, 10%) #dcbfd41a  
rgb(220, 191, 212, 20%) #dcbfd433  
rgb(220, 191, 212, 40%) #dcbfd44C  
rgb(220, 191, 212, 60%) #dcbfd499  
rgb(220, 191, 212, 80%) #dcbfd4CC  
rgb(220, 191, 212, 100%) #dcbfd4FF  

Saturated and desaturated colors of #dcbfd4

HSL Code Preview
hsl(317, 10%, 81%)  
hsl(317, 20%, 81%)  
hsl(317, 40%, 81%)  
hsl(317, 60%, 81%)  
hsl(317, 80%, 81%)  
hsl(317, 100%, 81%)  

#dcbfd4 Color Usage In CSS

 body {
    color: #dcbfd4;
    }
 p {
    color: rgb(220, 191, 212);
    }
 header {
    border-bottom:1px solid #dcbfd4;
    }
Recent Random Colors