HEX: #EFCA8C
RGB: (239,202,140)
#EFCA8C contains mainly red and green colors. Web safe color of #EFCA8C is #FFCC99 (or #FC9).
#EFCA8C color RGB value is (239,202,140).
RGB: (239,202,140) (94%,79%,55%)
R 239 of 255 = 94%
G 202 of 255 = 79%
B 140 of 255 = 55%
R + G + B ~ 76%. #EFCA8C is quite light color.
R + G + B =
239 + 202 + 140 = 581 (100%)
R 239 of 581 ~ 41.14%
G 202 of 581 ~ 34.77%
B 140 of 581 ~ 24.1%
#EFCA8C 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 | CA | 8C | |
---|---|---|---|
RGB | 239 | 202 | 140 |
HSL | 38° | 75.57% | 74.31% |
HSB/HSV | 38° | 41.42% | 93.73% |
CMYK | 0.00% | 15.48% | 41.42% |
6.27% |
HEX | EF | CA | 8C |
Decimal | 239 | 202 | 140 |
Binary | 11101111 | 11001010 | 10001100 |
Octal | 357 | 312 | 214 |
Examples of css and html codes for elements with #EFCA8C color. Also use rgb(239,202,140) instead hex code.
.myTextColor { color: #EFCA8C; }
<p style="color:#EFCA8C">This sample text font color is #EFCA8C.</p>
This text font color is #EFCA8C.
.myBgColor { background-color: #EFCA8C; }
<div style="background-color:#EFCA8C">Inner text</div>
This div background color is #EFCA8C.
.myBorderColor { border: 1px solid #EFCA8C; }
<div style="border:3px solid #EFCA8C">Div</div>
This div border color is #EFCA8C.
.myOpacity80 { color: #EFCA8C; opacity: 0.8; }
<p style="color:#EFCA8C;opacity:0.8;">80%</p>
Text with #EFCA8C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFCA8C;}
<p style="text-shadow: 3px 3px 1px #EFCA8C">Text here.</p>
This text has shadow with #EFCA8C color.
.textShadow {text-shadow: 3px 3px 1px #EFCA8C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFCA8C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFCA8C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFCA8C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFCA8C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFCA8C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFCA8C; -webkit-box-shadow: 1px 1px 3px 2px #EFCA8C; box-shadow: 1px 1px 3px 2px #EFCA8C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFCA8C; -webkit-box-shadow: 1px 1px 3px 2px #EFCA8C; box-shadow:1px 1px 3px 2px #EFCA8C;">
Div content here</div>
This text has color #EFCA8C on black background.
This text has color #EFCA8C on white background.
This text has black color on #EFCA8C background.
This text has white color on #EFCA8C background.