HEX: #EFCC8D
RGB: (239,204,141)
#EFCC8D contains mainly red and green colors. Web safe color of #EFCC8D is #FFCC99 (or #FC9).
#EFCC8D color RGB value is (239,204,141).
RGB: (239,204,141) (94%,80%,55%)
R 239 of 255 = 94%
G 204 of 255 = 80%
B 141 of 255 = 55%
R + G + B ~ 76%. #EFCC8D is quite light color.
R + G + B =
239 + 204 + 141 = 584 (100%)
R 239 of 584 ~ 40.92%
G 204 of 584 ~ 34.93%
B 141 of 584 ~ 24.14%
#EFCC8D color CMYK value is (0,15,41,6).
CMYK: (0,15,41,6) C0M15Y41K6 (0%,15%,41%,6%) (0.00/0.15/0.41/0.06)
EF | CC | 8D | |
---|---|---|---|
RGB | 239 | 204 | 141 |
HSL | 39° | 75.38% | 74.51% |
HSB/HSV | 39° | 41.00% | 93.73% |
CMYK | 0.00% | 14.64% | 41.00% |
6.27% |
HEX | EF | CC | 8D |
Decimal | 239 | 204 | 141 |
Binary | 11101111 | 11001100 | 10001101 |
Octal | 357 | 314 | 215 |
Examples of css and html codes for elements with #EFCC8D color. Also use rgb(239,204,141) instead hex code.
.myTextColor { color: #EFCC8D; }
<p style="color:#EFCC8D">This sample text font color is #EFCC8D.</p>
This text font color is #EFCC8D.
.myBgColor { background-color: #EFCC8D; }
<div style="background-color:#EFCC8D">Inner text</div>
This div background color is #EFCC8D.
.myBorderColor { border: 1px solid #EFCC8D; }
<div style="border:3px solid #EFCC8D">Div</div>
This div border color is #EFCC8D.
.myOpacity80 { color: #EFCC8D; opacity: 0.8; }
<p style="color:#EFCC8D;opacity:0.8;">80%</p>
Text with #EFCC8D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFCC8D;}
<p style="text-shadow: 3px 3px 1px #EFCC8D">Text here.</p>
This text has shadow with #EFCC8D color.
.textShadow {text-shadow: 3px 3px 1px #EFCC8D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFCC8D, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFCC8D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFCC8D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFCC8D, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFCC8D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFCC8D; -webkit-box-shadow: 1px 1px 3px 2px #EFCC8D; box-shadow: 1px 1px 3px 2px #EFCC8D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFCC8D; -webkit-box-shadow: 1px 1px 3px 2px #EFCC8D; box-shadow:1px 1px 3px 2px #EFCC8D;">
Div content here</div>
This text has color #EFCC8D on black background.
This text has color #EFCC8D on white background.
This text has black color on #EFCC8D background.
This text has white color on #EFCC8D background.