HEX: #F0B000
RGB: (240,176,0)
#F0B000 contains mainly red color. Web safe color of #F0B000 is #FF9900 (or #F90).
#F0B000 color RGB value is (240,176,0).
RGB: (240,176,0) (94%,69%,0%)
R 240 of 255 = 94%
G 176 of 255 = 69%
B 0 of 255 = 0%
R + G + B ~ 54%. #F0B000 is middle color (not dark and not light).
R + G + B =
240 + 176 + 0 = 416 (100%)
R 240 of 416 ~ 57.69%
G 176 of 416 ~ 42.31%
B 0 of 416 ~ 0%
#F0B000 color CMYK value is (0,27,100,6).
CMYK: (0,27,100,6) C0M27Y100K6 (0%,27%,100%,6%) (0.00/0.27/1.00/0.06)
F0 | B0 | 00 | |
---|---|---|---|
RGB | 240 | 176 | 0 |
HSL | 44° | 100.00% | 47.06% |
HSB/HSV | 44° | 100.00% | 94.12% |
CMYK | 0.00% | 26.67% | 100.00% |
5.88% |
HEX | F0 | B0 | 00 |
Decimal | 240 | 176 | 0 |
Binary | 11110000 | 10110000 | 0 |
Octal | 360 | 260 | 0 |
Examples of css and html codes for elements with #F0B000 color. Also use rgb(240,176,0) instead hex code.
.myTextColor { color: #F0B000; }
<p style="color:#F0B000">This sample text font color is #F0B000.</p>
This text font color is #F0B000.
.myBgColor { background-color: #F0B000; }
<div style="background-color:#F0B000">Inner text</div>
This div background color is #F0B000.
.myBorderColor { border: 1px solid #F0B000; }
<div style="border:3px solid #F0B000">Div</div>
This div border color is #F0B000.
.myOpacity80 { color: #F0B000; opacity: 0.8; }
<p style="color:#F0B000;opacity:0.8;">80%</p>
Text with #F0B000 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0B000;}
<p style="text-shadow: 3px 3px 1px #F0B000">Text here.</p>
This text has shadow with #F0B000 color.
.textShadow {text-shadow: 3px 3px 1px #F0B000, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0B000, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0B000 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0B000, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0B000, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0B000 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0B000; -webkit-box-shadow: 1px 1px 3px 2px #F0B000; box-shadow: 1px 1px 3px 2px #F0B000; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0B000; -webkit-box-shadow: 1px 1px 3px 2px #F0B000; box-shadow:1px 1px 3px 2px #F0B000;">
Div content here</div>
This text has color #F0B000 on black background.
This text has color #F0B000 on white background.
This text has black color on #F0B000 background.
This text has white color on #F0B000 background.