#de1bce Color
Color Codes | |
---|---|
Hex Code | #de1bce |
RGB Code | rgb(222, 27, 206) |
HSL Code | hsl(305, 78%, 49%) |
#de1bce Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 27, 206); }
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(305, 78%, 49%); }
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 #de1bce
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 27, 206, 10%) | #de1bce1a | |
rgb(222, 27, 206, 20%) | #de1bce33 | |
rgb(222, 27, 206, 40%) | #de1bce4C | |
rgb(222, 27, 206, 60%) | #de1bce99 | |
rgb(222, 27, 206, 80%) | #de1bceCC | |
rgb(222, 27, 206, 100%) | #de1bceFF |
Saturated and desaturated colors of #de1bce
HSL Code | Preview |
---|---|
hsl(305, 10%, 49%) | |
hsl(305, 20%, 49%) | |
hsl(305, 40%, 49%) | |
hsl(305, 60%, 49%) | |
hsl(305, 80%, 49%) | |
hsl(305, 100%, 49%) |
#de1bce Color Usage In CSS
body { color: #de1bce; } p { color: rgb(222, 27, 206); } header { border-bottom:1px solid #de1bce; }