HEX: #F88923
RGB: (248,137,35)
#F88923 contains mainly red color. Web safe color of #F88923 is #FF9933 (or #F93).
#F88923 color RGB value is (248,137,35).
RGB: (248,137,35) (97%,54%,14%)
R 248 of 255 = 97%
G 137 of 255 = 54%
B 35 of 255 = 14%
R + G + B ~ 55%. #F88923 is middle color (not dark and not light).
R + G + B =
248 + 137 + 35 = 420 (100%)
R 248 of 420 ~ 59.05%
G 137 of 420 ~ 32.62%
B 35 of 420 ~ 8.33%
#F88923 color CMYK value is (0,45,86,3).
CMYK: (0,45,86,3) C0M45Y86K3 (0%,45%,86%,3%) (0.00/0.45/0.86/0.03)
F8 | 89 | 23 | |
---|---|---|---|
RGB | 248 | 137 | 35 |
HSL | 29° | 93.83% | 55.49% |
HSB/HSV | 29° | 85.89% | 97.25% |
CMYK | 0.00% | 44.76% | 85.89% |
2.75% |
HEX | F8 | 89 | 23 |
Decimal | 248 | 137 | 35 |
Binary | 11111000 | 10001001 | 100011 |
Octal | 370 | 211 | 43 |
Examples of css and html codes for elements with #F88923 color. Also use rgb(248,137,35) instead hex code.
.myTextColor { color: #F88923; }
<p style="color:#F88923">This sample text font color is #F88923.</p>
This text font color is #F88923.
.myBgColor { background-color: #F88923; }
<div style="background-color:#F88923">Inner text</div>
This div background color is #F88923.
.myBorderColor { border: 1px solid #F88923; }
<div style="border:3px solid #F88923">Div</div>
This div border color is #F88923.
.myOpacity80 { color: #F88923; opacity: 0.8; }
<p style="color:#F88923;opacity:0.8;">80%</p>
Text with #F88923 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F88923;}
<p style="text-shadow: 3px 3px 1px #F88923">Text here.</p>
This text has shadow with #F88923 color.
.textShadow {text-shadow: 3px 3px 1px #F88923, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F88923, 5px 5px 20px red">Text here.</p>
This text has shadow with #F88923 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F88923, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F88923, Direction=45, Strength=4)">Text</p>
This text has shadow with #F88923 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F88923; -webkit-box-shadow: 1px 1px 3px 2px #F88923; box-shadow: 1px 1px 3px 2px #F88923; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F88923; -webkit-box-shadow: 1px 1px 3px 2px #F88923; box-shadow:1px 1px 3px 2px #F88923;">
Div content here</div>
This text has color #F88923 on black background.
This text has color #F88923 on white background.
This text has black color on #F88923 background.
This text has white color on #F88923 background.