#dd90f4 Color
Color Codes | |
---|---|
Hex Code | #dd90f4 |
RGB Code | rgb(221, 144, 244) |
HSL Code | hsl(286, 82%, 76%) |
#dd90f4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(221, 144, 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(286, 82%, 76%); }
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 #dd90f4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(221, 144, 244, 10%) | #dd90f41a | |
rgb(221, 144, 244, 20%) | #dd90f433 | |
rgb(221, 144, 244, 40%) | #dd90f44C | |
rgb(221, 144, 244, 60%) | #dd90f499 | |
rgb(221, 144, 244, 80%) | #dd90f4CC | |
rgb(221, 144, 244, 100%) | #dd90f4FF |
Saturated and desaturated colors of #dd90f4
HSL Code | Preview |
---|---|
hsl(286, 10%, 76%) | |
hsl(286, 20%, 76%) | |
hsl(286, 40%, 76%) | |
hsl(286, 60%, 76%) | |
hsl(286, 80%, 76%) | |
hsl(286, 100%, 76%) |
#dd90f4 Color Usage In CSS
body { color: #dd90f4; } p { color: rgb(221, 144, 244); } header { border-bottom:1px solid #dd90f4; }