HEX: #F8952E
RGB: (248,149,46)
#F8952E contains mainly red color. Web safe color of #F8952E is #FF9933 (or #F93).
#F8952E color RGB value is (248,149,46).
RGB: (248,149,46) (97%,58%,18%)
R 248 of 255 = 97%
G 149 of 255 = 58%
B 46 of 255 = 18%
R + G + B ~ 58%. #F8952E is middle color (not dark and not light).
R + G + B =
248 + 149 + 46 = 443 (100%)
R 248 of 443 ~ 55.98%
G 149 of 443 ~ 33.63%
B 46 of 443 ~ 10.38%
#F8952E color CMYK value is (0,40,81,3).
CMYK: (0,40,81,3) C0M40Y81K3 (0%,40%,81%,3%) (0.00/0.40/0.81/0.03)
F8 | 95 | 2E | |
---|---|---|---|
RGB | 248 | 149 | 46 |
HSL | 31° | 93.52% | 57.65% |
HSB/HSV | 31° | 81.45% | 97.25% |
CMYK | 0.00% | 39.92% | 81.45% |
2.75% |
HEX | F8 | 95 | 2E |
Decimal | 248 | 149 | 46 |
Binary | 11111000 | 10010101 | 101110 |
Octal | 370 | 225 | 56 |
Examples of css and html codes for elements with #F8952E color. Also use rgb(248,149,46) instead hex code.
.myTextColor { color: #F8952E; }
<p style="color:#F8952E">This sample text font color is #F8952E.</p>
This text font color is #F8952E.
.myBgColor { background-color: #F8952E; }
<div style="background-color:#F8952E">Inner text</div>
This div background color is #F8952E.
.myBorderColor { border: 1px solid #F8952E; }
<div style="border:3px solid #F8952E">Div</div>
This div border color is #F8952E.
.myOpacity80 { color: #F8952E; opacity: 0.8; }
<p style="color:#F8952E;opacity:0.8;">80%</p>
Text with #F8952E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F8952E;}
<p style="text-shadow: 3px 3px 1px #F8952E">Text here.</p>
This text has shadow with #F8952E color.
.textShadow {text-shadow: 3px 3px 1px #F8952E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F8952E, 5px 5px 20px red">Text here.</p>
This text has shadow with #F8952E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F8952E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F8952E, Direction=45, Strength=4)">Text</p>
This text has shadow with #F8952E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F8952E; -webkit-box-shadow: 1px 1px 3px 2px #F8952E; box-shadow: 1px 1px 3px 2px #F8952E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F8952E; -webkit-box-shadow: 1px 1px 3px 2px #F8952E; box-shadow:1px 1px 3px 2px #F8952E;">
Div content here</div>
This text has color #F8952E on black background.
This text has color #F8952E on white background.
This text has black color on #F8952E background.
This text has white color on #F8952E background.