Random Color Generator

#d3befd Color

Color Codes
Hex Code #d3befd
RGB Code rgb(211, 190, 253)
HSL Code hsl(260, 94%, 87%)

#d3befd Color Syntax

rgb()

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

 main {
    background-color: rgb(211, 190, 253);
   }

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(260, 94%, 87%);
  }

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

RGB Code Hex Code Preview
rgb(211, 190, 253, 10%) #d3befd1a  
rgb(211, 190, 253, 20%) #d3befd33  
rgb(211, 190, 253, 40%) #d3befd4C  
rgb(211, 190, 253, 60%) #d3befd99  
rgb(211, 190, 253, 80%) #d3befdCC  
rgb(211, 190, 253, 100%) #d3befdFF  

Saturated and desaturated colors of #d3befd

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

#d3befd Color Usage In CSS

 body {
    color: #d3befd;
    }
 p {
    color: rgb(211, 190, 253);
    }
 header {
    border-bottom:1px solid #d3befd;
    }
Recent Random Colors