HEX: #F5821F
RGB: (245,130,31)
#F5821F contains mainly red color. Web safe color of #F5821F is #FF9933 (or #F93).
#F5821F color RGB value is (245,130,31).
RGB: (245,130,31) (96%,51%,12%)
R 245 of 255 = 96%
G 130 of 255 = 51%
B 31 of 255 = 12%
R + G + B ~ 53%. #F5821F is middle color (not dark and not light).
R + G + B =
245 + 130 + 31 = 406 (100%)
R 245 of 406 ~ 60.34%
G 130 of 406 ~ 32.02%
B 31 of 406 ~ 7.64%
#F5821F color CMYK value is (0,47,87,4).
CMYK: (0,47,87,4) C0M47Y87K4 (0%,47%,87%,4%) (0.00/0.47/0.87/0.04)
F5 | 82 | 1F | |
---|---|---|---|
RGB | 245 | 130 | 31 |
HSL | 28° | 91.45% | 54.12% |
HSB/HSV | 28° | 87.35% | 96.08% |
CMYK | 0.00% | 46.94% | 87.35% |
3.92% |
HEX | F5 | 82 | 1F |
Decimal | 245 | 130 | 31 |
Binary | 11110101 | 10000010 | 11111 |
Octal | 365 | 202 | 37 |
Examples of css and html codes for elements with #F5821F color. Also use rgb(245,130,31) instead hex code.
.myTextColor { color: #F5821F; }
<p style="color:#F5821F">This sample text font color is #F5821F.</p>
This text font color is #F5821F.
.myBgColor { background-color: #F5821F; }
<div style="background-color:#F5821F">Inner text</div>
This div background color is #F5821F.
.myBorderColor { border: 1px solid #F5821F; }
<div style="border:3px solid #F5821F">Div</div>
This div border color is #F5821F.
.myOpacity80 { color: #F5821F; opacity: 0.8; }
<p style="color:#F5821F;opacity:0.8;">80%</p>
Text with #F5821F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5821F;}
<p style="text-shadow: 3px 3px 1px #F5821F">Text here.</p>
This text has shadow with #F5821F color.
.textShadow {text-shadow: 3px 3px 1px #F5821F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5821F, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5821F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5821F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5821F, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5821F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5821F; -webkit-box-shadow: 1px 1px 3px 2px #F5821F; box-shadow: 1px 1px 3px 2px #F5821F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5821F; -webkit-box-shadow: 1px 1px 3px 2px #F5821F; box-shadow:1px 1px 3px 2px #F5821F;">
Div content here</div>
This text has color #F5821F on black background.
This text has color #F5821F on white background.
This text has black color on #F5821F background.
This text has white color on #F5821F background.