#fe2082 Color
Color Codes | |
---|---|
Hex Code | #fe2082 |
RGB Code | rgb(254, 32, 130) |
HSL Code | hsl(334, 99%, 56%) |
#fe2082 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 32, 130); }
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, 99%, 56%); }
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 #fe2082
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 32, 130, 10%) | #fe20821a | |
rgb(254, 32, 130, 20%) | #fe208233 | |
rgb(254, 32, 130, 40%) | #fe20824C | |
rgb(254, 32, 130, 60%) | #fe208299 | |
rgb(254, 32, 130, 80%) | #fe2082CC | |
rgb(254, 32, 130, 100%) | #fe2082FF |
Saturated and desaturated colors of #fe2082
HSL Code | Preview |
---|---|
hsl(334, 10%, 56%) | |
hsl(334, 20%, 56%) | |
hsl(334, 40%, 56%) | |
hsl(334, 60%, 56%) | |
hsl(334, 80%, 56%) | |
hsl(334, 100%, 56%) |
#fe2082 Color Usage In CSS
body { color: #fe2082; } p { color: rgb(254, 32, 130); } header { border-bottom:1px solid #fe2082; }