#dbb5f4 Color
Color Codes | |
---|---|
Hex Code | #dbb5f4 |
RGB Code | rgb(219, 181, 244) |
HSL Code | hsl(276, 74%, 83%) |
#dbb5f4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 181, 244); }
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, 74%, 83%); }
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 #dbb5f4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 181, 244, 10%) | #dbb5f41a | |
rgb(219, 181, 244, 20%) | #dbb5f433 | |
rgb(219, 181, 244, 40%) | #dbb5f44C | |
rgb(219, 181, 244, 60%) | #dbb5f499 | |
rgb(219, 181, 244, 80%) | #dbb5f4CC | |
rgb(219, 181, 244, 100%) | #dbb5f4FF |
Saturated and desaturated colors of #dbb5f4
HSL Code | Preview |
---|---|
hsl(276, 10%, 83%) | |
hsl(276, 20%, 83%) | |
hsl(276, 40%, 83%) | |
hsl(276, 60%, 83%) | |
hsl(276, 80%, 83%) | |
hsl(276, 100%, 83%) |
#dbb5f4 Color Usage In CSS
body { color: #dbb5f4; } p { color: rgb(219, 181, 244); } header { border-bottom:1px solid #dbb5f4; }