#f14627 Color
Color Codes | |
---|---|
Hex Code | #f14627 |
RGB Code | rgb(241, 70, 39) |
HSL Code | hsl(9, 88%, 55%) |
#f14627 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 70, 39); }
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(9, 88%, 55%); }
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 #f14627
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 70, 39, 10%) | #f146271a | |
rgb(241, 70, 39, 20%) | #f1462733 | |
rgb(241, 70, 39, 40%) | #f146274C | |
rgb(241, 70, 39, 60%) | #f1462799 | |
rgb(241, 70, 39, 80%) | #f14627CC | |
rgb(241, 70, 39, 100%) | #f14627FF |
Saturated and desaturated colors of #f14627
HSL Code | Preview |
---|---|
hsl(9, 10%, 55%) | |
hsl(9, 20%, 55%) | |
hsl(9, 40%, 55%) | |
hsl(9, 60%, 55%) | |
hsl(9, 80%, 55%) | |
hsl(9, 100%, 55%) |
#f14627 Color Usage In CSS
body { color: #f14627; } p { color: rgb(241, 70, 39); } header { border-bottom:1px solid #f14627; }