#d19bf0 Color
Color Codes | |
---|---|
Hex Code | #d19bf0 |
RGB Code | rgb(209, 155, 240) |
HSL Code | hsl(278, 74%, 77%) |
#d19bf0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 155, 240); }
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(278, 74%, 77%); }
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 #d19bf0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 155, 240, 10%) | #d19bf01a | |
rgb(209, 155, 240, 20%) | #d19bf033 | |
rgb(209, 155, 240, 40%) | #d19bf04C | |
rgb(209, 155, 240, 60%) | #d19bf099 | |
rgb(209, 155, 240, 80%) | #d19bf0CC | |
rgb(209, 155, 240, 100%) | #d19bf0FF |
Saturated and desaturated colors of #d19bf0
HSL Code | Preview |
---|---|
hsl(278, 10%, 77%) | |
hsl(278, 20%, 77%) | |
hsl(278, 40%, 77%) | |
hsl(278, 60%, 77%) | |
hsl(278, 80%, 77%) | |
hsl(278, 100%, 77%) |
#d19bf0 Color Usage In CSS
body { color: #d19bf0; } p { color: rgb(209, 155, 240); } header { border-bottom:1px solid #d19bf0; }