HEX: #EFBC3F
RGB: (239,188,63)
#EFBC3F contains mainly red and green colors. Web safe color of #EFBC3F is #FFCC33 (or #FC3).
#EFBC3F color RGB value is (239,188,63).
RGB: (239,188,63) (94%,74%,25%)
R 239 of 255 = 94%
G 188 of 255 = 74%
B 63 of 255 = 25%
R + G + B ~ 64%. #EFBC3F is quite light color.
R + G + B =
239 + 188 + 63 = 490 (100%)
R 239 of 490 ~ 48.78%
G 188 of 490 ~ 38.37%
B 63 of 490 ~ 12.86%
#EFBC3F color CMYK value is (0,21,74,6).
CMYK: (0,21,74,6) C0M21Y74K6 (0%,21%,74%,6%) (0.00/0.21/0.74/0.06)
EF | BC | 3F | |
---|---|---|---|
RGB | 239 | 188 | 63 |
HSL | 43° | 84.62% | 59.22% |
HSB/HSV | 43° | 73.64% | 93.73% |
CMYK | 0.00% | 21.34% | 73.64% |
6.27% |
HEX | EF | BC | 3F |
Decimal | 239 | 188 | 63 |
Binary | 11101111 | 10111100 | 111111 |
Octal | 357 | 274 | 77 |
Examples of css and html codes for elements with #EFBC3F color. Also use rgb(239,188,63) instead hex code.
.myTextColor { color: #EFBC3F; }
<p style="color:#EFBC3F">This sample text font color is #EFBC3F.</p>
This text font color is #EFBC3F.
.myBgColor { background-color: #EFBC3F; }
<div style="background-color:#EFBC3F">Inner text</div>
This div background color is #EFBC3F.
.myBorderColor { border: 1px solid #EFBC3F; }
<div style="border:3px solid #EFBC3F">Div</div>
This div border color is #EFBC3F.
.myOpacity80 { color: #EFBC3F; opacity: 0.8; }
<p style="color:#EFBC3F;opacity:0.8;">80%</p>
Text with #EFBC3F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFBC3F;}
<p style="text-shadow: 3px 3px 1px #EFBC3F">Text here.</p>
This text has shadow with #EFBC3F color.
.textShadow {text-shadow: 3px 3px 1px #EFBC3F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFBC3F, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFBC3F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFBC3F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFBC3F, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFBC3F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFBC3F; -webkit-box-shadow: 1px 1px 3px 2px #EFBC3F; box-shadow: 1px 1px 3px 2px #EFBC3F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFBC3F; -webkit-box-shadow: 1px 1px 3px 2px #EFBC3F; box-shadow:1px 1px 3px 2px #EFBC3F;">
Div content here</div>
This text has color #EFBC3F on black background.
This text has color #EFBC3F on white background.
This text has black color on #EFBC3F background.
This text has white color on #EFBC3F background.