#f89103 Color
Color Codes | |
---|---|
Hex Code | #f89103 |
RGB Code | rgb(248, 145, 03) |
HSL Code | hsl(35, 98%, 49%) |
#f89103 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(248, 145, 03); }
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(35, 98%, 49%); }
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 #f89103
RGB Code | Hex Code | Preview |
---|---|---|
rgb(248, 145, 03, 10%) | #f891031a | |
rgb(248, 145, 03, 20%) | #f8910333 | |
rgb(248, 145, 03, 40%) | #f891034C | |
rgb(248, 145, 03, 60%) | #f8910399 | |
rgb(248, 145, 03, 80%) | #f89103CC | |
rgb(248, 145, 03, 100%) | #f89103FF |
Saturated and desaturated colors of #f89103
HSL Code | Preview |
---|---|
hsl(35, 10%, 49%) | |
hsl(35, 20%, 49%) | |
hsl(35, 40%, 49%) | |
hsl(35, 60%, 49%) | |
hsl(35, 80%, 49%) | |
hsl(35, 100%, 49%) |
#f89103 Color Usage In CSS
body { color: #f89103; } p { color: rgb(248, 145, 03); } header { border-bottom:1px solid #f89103; }