Random Color Generator

#ded1fa Color

Color Codes
Hex Code #ded1fa
RGB Code rgb(222, 209, 250)
HSL Code hsl(259, 80%, 90%)

#ded1fa Color Syntax

rgb()

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

 main {
    background-color: rgb(222, 209, 250);
   }

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(259, 80%, 90%);
  }

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

RGB Code Hex Code Preview
rgb(222, 209, 250, 10%) #ded1fa1a  
rgb(222, 209, 250, 20%) #ded1fa33  
rgb(222, 209, 250, 40%) #ded1fa4C  
rgb(222, 209, 250, 60%) #ded1fa99  
rgb(222, 209, 250, 80%) #ded1faCC  
rgb(222, 209, 250, 100%) #ded1faFF  

Saturated and desaturated colors of #ded1fa

HSL Code Preview
hsl(259, 10%, 90%)  
hsl(259, 20%, 90%)  
hsl(259, 40%, 90%)  
hsl(259, 60%, 90%)  
hsl(259, 80%, 90%)  
hsl(259, 100%, 90%)  

#ded1fa Color Usage In CSS

 body {
    color: #ded1fa;
    }
 p {
    color: rgb(222, 209, 250);
    }
 header {
    border-bottom:1px solid #ded1fa;
    }
Recent Random Colors