HEX: #EFCACA
RGB: (239,202,202)
#EFCACA contains red, green and blue colors in about the same proportion. Web safe color of #EFCACA is #FFCCCC (or #FCC).
#EFCACA color RGB value is (239,202,202).
RGB: (239,202,202) (94%,79%,79%)
R 239 of 255 = 94%
G 202 of 255 = 79%
B 202 of 255 = 79%
R + G + B ~ 84%. #EFCACA is quite light color.
R + G + B =
239 + 202 + 202 = 643 (100%)
R 239 of 643 ~ 37.17%
G 202 of 643 ~ 31.42%
B 202 of 643 ~ 31.42%
#EFCACA color CMYK value is (0,15,15,6).
CMYK: (0,15,15,6) C0M15Y15K6 (0%,15%,15%,6%) (0.00/0.15/0.15/0.06)
EF | CA | CA | |
---|---|---|---|
RGB | 239 | 202 | 202 |
HSL | 0° | 53.62% | 86.47% |
HSB/HSV | 0° | 15.48% | 93.73% |
CMYK | 0.00% | 15.48% | 15.48% |
6.27% |
HEX | EF | CA | CA |
Decimal | 239 | 202 | 202 |
Binary | 11101111 | 11001010 | 11001010 |
Octal | 357 | 312 | 312 |
Examples of css and html codes for elements with #EFCACA color. Also use rgb(239,202,202) instead hex code.
.myTextColor { color: #EFCACA; }
<p style="color:#EFCACA">This sample text font color is #EFCACA.</p>
This text font color is #EFCACA.
.myBgColor { background-color: #EFCACA; }
<div style="background-color:#EFCACA">Inner text</div>
This div background color is #EFCACA.
.myBorderColor { border: 1px solid #EFCACA; }
<div style="border:3px solid #EFCACA">Div</div>
This div border color is #EFCACA.
.myOpacity80 { color: #EFCACA; opacity: 0.8; }
<p style="color:#EFCACA;opacity:0.8;">80%</p>
Text with #EFCACA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFCACA;}
<p style="text-shadow: 3px 3px 1px #EFCACA">Text here.</p>
This text has shadow with #EFCACA color.
.textShadow {text-shadow: 3px 3px 1px #EFCACA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFCACA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFCACA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFCACA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFCACA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFCACA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFCACA; -webkit-box-shadow: 1px 1px 3px 2px #EFCACA; box-shadow: 1px 1px 3px 2px #EFCACA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFCACA; -webkit-box-shadow: 1px 1px 3px 2px #EFCACA; box-shadow:1px 1px 3px 2px #EFCACA;">
Div content here</div>
This text has color #EFCACA on black background.
This text has color #EFCACA on white background.
This text has black color on #EFCACA background.
This text has white color on #EFCACA background.