HEX: #EFCCCC
RGB: (239,204,204)
#EFCCCC contains red, green and blue colors in about the same proportion. Web safe color of #EFCCCC is #FFCCCC (or #FCC).
#EFCCCC color RGB value is (239,204,204).
RGB: (239,204,204) (94%,80%,80%)
R 239 of 255 = 94%
G 204 of 255 = 80%
B 204 of 255 = 80%
R + G + B ~ 85%. #EFCCCC is quite light color.
R + G + B =
239 + 204 + 204 = 647 (100%)
R 239 of 647 ~ 36.94%
G 204 of 647 ~ 31.53%
B 204 of 647 ~ 31.53%
#EFCCCC 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 | CC | CC | |
---|---|---|---|
RGB | 239 | 204 | 204 |
HSL | 0° | 52.24% | 86.86% |
HSB/HSV | 0° | 14.64% | 93.73% |
CMYK | 0.00% | 14.64% | 14.64% |
6.27% |
HEX | EF | CC | CC |
Decimal | 239 | 204 | 204 |
Binary | 11101111 | 11001100 | 11001100 |
Octal | 357 | 314 | 314 |
Examples of css and html codes for elements with #EFCCCC color. Also use rgb(239,204,204) instead hex code.
.myTextColor { color: #EFCCCC; }
<p style="color:#EFCCCC">This sample text font color is #EFCCCC.</p>
This text font color is #EFCCCC.
.myBgColor { background-color: #EFCCCC; }
<div style="background-color:#EFCCCC">Inner text</div>
This div background color is #EFCCCC.
.myBorderColor { border: 1px solid #EFCCCC; }
<div style="border:3px solid #EFCCCC">Div</div>
This div border color is #EFCCCC.
.myOpacity80 { color: #EFCCCC; opacity: 0.8; }
<p style="color:#EFCCCC;opacity:0.8;">80%</p>
Text with #EFCCCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFCCCC;}
<p style="text-shadow: 3px 3px 1px #EFCCCC">Text here.</p>
This text has shadow with #EFCCCC color.
.textShadow {text-shadow: 3px 3px 1px #EFCCCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFCCCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFCCCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFCCCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFCCCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFCCCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFCCCC; -webkit-box-shadow: 1px 1px 3px 2px #EFCCCC; box-shadow: 1px 1px 3px 2px #EFCCCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFCCCC; -webkit-box-shadow: 1px 1px 3px 2px #EFCCCC; box-shadow:1px 1px 3px 2px #EFCCCC;">
Div content here</div>
This text has color #EFCCCC on black background.
This text has color #EFCCCC on white background.
This text has black color on #EFCCCC background.
This text has white color on #EFCCCC background.