#f13f04 Color
Color Codes | |
---|---|
Hex Code | #f13f04 |
RGB Code | rgb(241, 63, 04) |
HSL Code | hsl(15, 97%, 48%) |
#f13f04 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 63, 04); }
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(15, 97%, 48%); }
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 #f13f04
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 63, 04, 10%) | #f13f041a | |
rgb(241, 63, 04, 20%) | #f13f0433 | |
rgb(241, 63, 04, 40%) | #f13f044C | |
rgb(241, 63, 04, 60%) | #f13f0499 | |
rgb(241, 63, 04, 80%) | #f13f04CC | |
rgb(241, 63, 04, 100%) | #f13f04FF |
Saturated and desaturated colors of #f13f04
HSL Code | Preview |
---|---|
hsl(15, 10%, 48%) | |
hsl(15, 20%, 48%) | |
hsl(15, 40%, 48%) | |
hsl(15, 60%, 48%) | |
hsl(15, 80%, 48%) | |
hsl(15, 100%, 48%) |
#f13f04 Color Usage In CSS
body { color: #f13f04; } p { color: rgb(241, 63, 04); } header { border-bottom:1px solid #f13f04; }