#da06cc Color
Color Codes | |
---|---|
Hex Code | #da06cc |
RGB Code | rgb(218, 06, 204) |
HSL Code | hsl(304, 95%, 44%) |
#da06cc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 06, 204); }
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(304, 95%, 44%); }
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 #da06cc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 06, 204, 10%) | #da06cc1a | |
rgb(218, 06, 204, 20%) | #da06cc33 | |
rgb(218, 06, 204, 40%) | #da06cc4C | |
rgb(218, 06, 204, 60%) | #da06cc99 | |
rgb(218, 06, 204, 80%) | #da06ccCC | |
rgb(218, 06, 204, 100%) | #da06ccFF |
Saturated and desaturated colors of #da06cc
HSL Code | Preview |
---|---|
hsl(304, 10%, 44%) | |
hsl(304, 20%, 44%) | |
hsl(304, 40%, 44%) | |
hsl(304, 60%, 44%) | |
hsl(304, 80%, 44%) | |
hsl(304, 100%, 44%) |
#da06cc Color Usage In CSS
body { color: #da06cc; } p { color: rgb(218, 06, 204); } header { border-bottom:1px solid #da06cc; }