#f94343 Color
Color Codes | |
---|---|
Hex Code | #f94343 |
RGB Code | rgb(249, 67, 67) |
HSL Code | hsl(0, 94%, 62%) |
#f94343 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 67, 67); }
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(0, 94%, 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 #f94343
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 67, 67, 10%) | #f943431a | |
rgb(249, 67, 67, 20%) | #f9434333 | |
rgb(249, 67, 67, 40%) | #f943434C | |
rgb(249, 67, 67, 60%) | #f9434399 | |
rgb(249, 67, 67, 80%) | #f94343CC | |
rgb(249, 67, 67, 100%) | #f94343FF |
Saturated and desaturated colors of #f94343
HSL Code | Preview |
---|---|
hsl(0, 10%, 62%) | |
hsl(0, 20%, 62%) | |
hsl(0, 40%, 62%) | |
hsl(0, 60%, 62%) | |
hsl(0, 80%, 62%) | |
hsl(0, 100%, 62%) |
#f94343 Color Usage In CSS
body { color: #f94343; } p { color: rgb(249, 67, 67); } header { border-bottom:1px solid #f94343; }