Random Color Generator

#dba2db Color

Color Codes
Hex Code #dba2db
RGB Code rgb(219, 162, 219)
HSL Code hsl(300, 44%, 75%)

#dba2db Color Syntax

rgb()

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

 main {
    background-color: rgb(219, 162, 219);
   }

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(300, 44%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(219, 162, 219, 10%) #dba2db1a  
rgb(219, 162, 219, 20%) #dba2db33  
rgb(219, 162, 219, 40%) #dba2db4C  
rgb(219, 162, 219, 60%) #dba2db99  
rgb(219, 162, 219, 80%) #dba2dbCC  
rgb(219, 162, 219, 100%) #dba2dbFF  

Saturated and desaturated colors of #dba2db

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

#dba2db Color Usage In CSS

 body {
    color: #dba2db;
    }
 p {
    color: rgb(219, 162, 219);
    }
 header {
    border-bottom:1px solid #dba2db;
    }
Recent Random Colors