#d90a64 Color
Color Codes | |
---|---|
Hex Code | #d90a64 |
RGB Code | rgb(217, 10, 100) |
HSL Code | hsl(334, 91%, 45%) |
#d90a64 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(217, 10, 100); }
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(334, 91%, 45%); }
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 #d90a64
RGB Code | Hex Code | Preview |
---|---|---|
rgb(217, 10, 100, 10%) | #d90a641a | |
rgb(217, 10, 100, 20%) | #d90a6433 | |
rgb(217, 10, 100, 40%) | #d90a644C | |
rgb(217, 10, 100, 60%) | #d90a6499 | |
rgb(217, 10, 100, 80%) | #d90a64CC | |
rgb(217, 10, 100, 100%) | #d90a64FF |
Saturated and desaturated colors of #d90a64
HSL Code | Preview |
---|---|
hsl(334, 10%, 45%) | |
hsl(334, 20%, 45%) | |
hsl(334, 40%, 45%) | |
hsl(334, 60%, 45%) | |
hsl(334, 80%, 45%) | |
hsl(334, 100%, 45%) |
#d90a64 Color Usage In CSS
body { color: #d90a64; } p { color: rgb(217, 10, 100); } header { border-bottom:1px solid #d90a64; }