#fe2051 Color
Color Codes | |
---|---|
Hex Code | #fe2051 |
RGB Code | rgb(254, 32, 81) |
HSL Code | hsl(347, 99%, 56%) |
#fe2051 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 32, 81); }
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(347, 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 #fe2051
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 32, 81, 10%) | #fe20511a | |
rgb(254, 32, 81, 20%) | #fe205133 | |
rgb(254, 32, 81, 40%) | #fe20514C | |
rgb(254, 32, 81, 60%) | #fe205199 | |
rgb(254, 32, 81, 80%) | #fe2051CC | |
rgb(254, 32, 81, 100%) | #fe2051FF |
Saturated and desaturated colors of #fe2051
HSL Code | Preview |
---|---|
hsl(347, 10%, 56%) | |
hsl(347, 20%, 56%) | |
hsl(347, 40%, 56%) | |
hsl(347, 60%, 56%) | |
hsl(347, 80%, 56%) | |
hsl(347, 100%, 56%) |
#fe2051 Color Usage In CSS
body { color: #fe2051; } p { color: rgb(254, 32, 81); } header { border-bottom:1px solid #fe2051; }