#f88321 Color
Color Codes | |
---|---|
Hex Code | #f88321 |
RGB Code | rgb(248, 131, 33) |
HSL Code | hsl(27, 94%, 55%) |
#f88321 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(248, 131, 33); }
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(27, 94%, 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 #f88321
RGB Code | Hex Code | Preview |
---|---|---|
rgb(248, 131, 33, 10%) | #f883211a | |
rgb(248, 131, 33, 20%) | #f8832133 | |
rgb(248, 131, 33, 40%) | #f883214C | |
rgb(248, 131, 33, 60%) | #f8832199 | |
rgb(248, 131, 33, 80%) | #f88321CC | |
rgb(248, 131, 33, 100%) | #f88321FF |
Saturated and desaturated colors of #f88321
HSL Code | Preview |
---|---|
hsl(27, 10%, 55%) | |
hsl(27, 20%, 55%) | |
hsl(27, 40%, 55%) | |
hsl(27, 60%, 55%) | |
hsl(27, 80%, 55%) | |
hsl(27, 100%, 55%) |
#f88321 Color Usage In CSS
body { color: #f88321; } p { color: rgb(248, 131, 33); } header { border-bottom:1px solid #f88321; }