#fc3966 Color
Color Codes | |
---|---|
Hex Code | #fc3966 |
RGB Code | rgb(252, 57, 102) |
HSL Code | hsl(346, 97%, 61%) |
#fc3966 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(252, 57, 102); }
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(346, 97%, 61%); }
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 #fc3966
RGB Code | Hex Code | Preview |
---|---|---|
rgb(252, 57, 102, 10%) | #fc39661a | |
rgb(252, 57, 102, 20%) | #fc396633 | |
rgb(252, 57, 102, 40%) | #fc39664C | |
rgb(252, 57, 102, 60%) | #fc396699 | |
rgb(252, 57, 102, 80%) | #fc3966CC | |
rgb(252, 57, 102, 100%) | #fc3966FF |
Saturated and desaturated colors of #fc3966
HSL Code | Preview |
---|---|
hsl(346, 10%, 61%) | |
hsl(346, 20%, 61%) | |
hsl(346, 40%, 61%) | |
hsl(346, 60%, 61%) | |
hsl(346, 80%, 61%) | |
hsl(346, 100%, 61%) |
#fc3966 Color Usage In CSS
body { color: #fc3966; } p { color: rgb(252, 57, 102); } header { border-bottom:1px solid #fc3966; }