#fe7d93 Color
Color Codes | |
---|---|
Hex Code | #fe7d93 |
RGB Code | rgb(254, 125, 147) |
HSL Code | hsl(350, 98%, 74%) |
#fe7d93 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 125, 147); }
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(350, 98%, 74%); }
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 #fe7d93
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 125, 147, 10%) | #fe7d931a | |
rgb(254, 125, 147, 20%) | #fe7d9333 | |
rgb(254, 125, 147, 40%) | #fe7d934C | |
rgb(254, 125, 147, 60%) | #fe7d9399 | |
rgb(254, 125, 147, 80%) | #fe7d93CC | |
rgb(254, 125, 147, 100%) | #fe7d93FF |
Saturated and desaturated colors of #fe7d93
HSL Code | Preview |
---|---|
hsl(350, 10%, 74%) | |
hsl(350, 20%, 74%) | |
hsl(350, 40%, 74%) | |
hsl(350, 60%, 74%) | |
hsl(350, 80%, 74%) | |
hsl(350, 100%, 74%) |
#fe7d93 Color Usage In CSS
body { color: #fe7d93; } p { color: rgb(254, 125, 147); } header { border-bottom:1px solid #fe7d93; }