Random Color Generator

#ddb1ee Color

Color Codes
Hex Code #ddb1ee
RGB Code rgb(221, 177, 238)
HSL Code hsl(283, 64%, 81%)

#ddb1ee Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 177, 238);
   }

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(283, 64%, 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 #ddb1ee

RGB Code Hex Code Preview
rgb(221, 177, 238, 10%) #ddb1ee1a  
rgb(221, 177, 238, 20%) #ddb1ee33  
rgb(221, 177, 238, 40%) #ddb1ee4C  
rgb(221, 177, 238, 60%) #ddb1ee99  
rgb(221, 177, 238, 80%) #ddb1eeCC  
rgb(221, 177, 238, 100%) #ddb1eeFF  

Saturated and desaturated colors of #ddb1ee

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

#ddb1ee Color Usage In CSS

 body {
    color: #ddb1ee;
    }
 p {
    color: rgb(221, 177, 238);
    }
 header {
    border-bottom:1px solid #ddb1ee;
    }
Recent Random Colors