HEX: #FC880B
RGB: (252,136,11)
#FC880B contains mainly red color. Web safe color of #FC880B is #FF9900 (or #F90).
#FC880B color RGB value is (252,136,11).
RGB: (252,136,11) (99%,53%,4%)
R 252 of 255 = 99%
G 136 of 255 = 53%
B 11 of 255 = 4%
R + G + B ~ 52%. #FC880B is middle color (not dark and not light).
R + G + B =
252 + 136 + 11 = 399 (100%)
R 252 of 399 ~ 63.16%
G 136 of 399 ~ 34.09%
B 11 of 399 ~ 2.76%
#FC880B color CMYK value is (0,46,96,1).
CMYK: (0,46,96,1) C0M46Y96K1 (0%,46%,96%,1%) (0.00/0.46/0.96/0.01)
FC | 88 | 0B | |
---|---|---|---|
RGB | 252 | 136 | 11 |
HSL | 31° | 97.57% | 51.57% |
HSB/HSV | 31° | 95.63% | 98.82% |
CMYK | 0.00% | 46.03% | 95.63% |
1.18% |
HEX | FC | 88 | 0B |
Decimal | 252 | 136 | 11 |
Binary | 11111100 | 10001000 | 1011 |
Octal | 374 | 210 | 13 |
Examples of css and html codes for elements with #FC880B color. Also use rgb(252,136,11) instead hex code.
.myTextColor { color: #FC880B; }
<p style="color:#FC880B">This sample text font color is #FC880B.</p>
This text font color is #FC880B.
.myBgColor { background-color: #FC880B; }
<div style="background-color:#FC880B">Inner text</div>
This div background color is #FC880B.
.myBorderColor { border: 1px solid #FC880B; }
<div style="border:3px solid #FC880B">Div</div>
This div border color is #FC880B.
.myOpacity80 { color: #FC880B; opacity: 0.8; }
<p style="color:#FC880B;opacity:0.8;">80%</p>
Text with #FC880B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FC880B;}
<p style="text-shadow: 3px 3px 1px #FC880B">Text here.</p>
This text has shadow with #FC880B color.
.textShadow {text-shadow: 3px 3px 1px #FC880B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FC880B, 5px 5px 20px red">Text here.</p>
This text has shadow with #FC880B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FC880B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FC880B, Direction=45, Strength=4)">Text</p>
This text has shadow with #FC880B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FC880B; -webkit-box-shadow: 1px 1px 3px 2px #FC880B; box-shadow: 1px 1px 3px 2px #FC880B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FC880B; -webkit-box-shadow: 1px 1px 3px 2px #FC880B; box-shadow:1px 1px 3px 2px #FC880B;">
Div content here</div>
This text has color #FC880B on black background.
This text has color #FC880B on white background.
This text has black color on #FC880B background.
This text has white color on #FC880B background.