#dbd9fd Color
Color Codes | |
---|---|
Hex Code | #dbd9fd |
RGB Code | rgb(219, 217, 253) |
HSL Code | hsl(243, 90%, 92%) |
#dbd9fd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 217, 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(243, 90%, 92%); }
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 #dbd9fd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 217, 253, 10%) | #dbd9fd1a | |
rgb(219, 217, 253, 20%) | #dbd9fd33 | |
rgb(219, 217, 253, 40%) | #dbd9fd4C | |
rgb(219, 217, 253, 60%) | #dbd9fd99 | |
rgb(219, 217, 253, 80%) | #dbd9fdCC | |
rgb(219, 217, 253, 100%) | #dbd9fdFF |
Saturated and desaturated colors of #dbd9fd
HSL Code | Preview |
---|---|
hsl(243, 10%, 92%) | |
hsl(243, 20%, 92%) | |
hsl(243, 40%, 92%) | |
hsl(243, 60%, 92%) | |
hsl(243, 80%, 92%) | |
hsl(243, 100%, 92%) |
#dbd9fd Color Usage In CSS
body { color: #dbd9fd; } p { color: rgb(219, 217, 253); } header { border-bottom:1px solid #dbd9fd; }