#fe4091 Color
Color Codes | |
---|---|
Hex Code | #fe4091 |
RGB Code | rgb(254, 64, 145) |
HSL Code | hsl(334, 99%, 62%) |
#fe4091 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 64, 145); }
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%, 62%); }
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 #fe4091
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 64, 145, 10%) | #fe40911a | |
rgb(254, 64, 145, 20%) | #fe409133 | |
rgb(254, 64, 145, 40%) | #fe40914C | |
rgb(254, 64, 145, 60%) | #fe409199 | |
rgb(254, 64, 145, 80%) | #fe4091CC | |
rgb(254, 64, 145, 100%) | #fe4091FF |
Saturated and desaturated colors of #fe4091
HSL Code | Preview |
---|---|
hsl(334, 10%, 62%) | |
hsl(334, 20%, 62%) | |
hsl(334, 40%, 62%) | |
hsl(334, 60%, 62%) | |
hsl(334, 80%, 62%) | |
hsl(334, 100%, 62%) |
#fe4091 Color Usage In CSS
body { color: #fe4091; } p { color: rgb(254, 64, 145); } header { border-bottom:1px solid #fe4091; }