Random Color Generator

#d69ffb Color

Color Codes
Hex Code #d69ffb
RGB Code rgb(214, 159, 251)
HSL Code hsl(276, 92%, 80%)

#d69ffb Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 159, 251);
   }

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(276, 92%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(214, 159, 251, 10%) #d69ffb1a  
rgb(214, 159, 251, 20%) #d69ffb33  
rgb(214, 159, 251, 40%) #d69ffb4C  
rgb(214, 159, 251, 60%) #d69ffb99  
rgb(214, 159, 251, 80%) #d69ffbCC  
rgb(214, 159, 251, 100%) #d69ffbFF  

Saturated and desaturated colors of #d69ffb

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

#d69ffb Color Usage In CSS

 body {
    color: #d69ffb;
    }
 p {
    color: rgb(214, 159, 251);
    }
 header {
    border-bottom:1px solid #d69ffb;
    }
Recent Random Colors