HEX: #EFC8DB
RGB: (239,200,219)
#EFC8DB contains red, green and blue colors in about the same proportion. Web safe color of #EFC8DB is #FFCCCC (or #FCC).
#EFC8DB color RGB value is (239,200,219).
RGB: (239,200,219) (94%,78%,86%)
R 239 of 255 = 94%
G 200 of 255 = 78%
B 219 of 255 = 86%
R + G + B ~ 86%. #EFC8DB is light color.
R + G + B =
239 + 200 + 219 = 658 (100%)
R 239 of 658 ~ 36.32%
G 200 of 658 ~ 30.4%
B 219 of 658 ~ 33.28%
#EFC8DB color CMYK value is (0,16,8,6).
CMYK: (0,16,8,6) C0M16Y8K6 (0%,16%,8%,6%) (0.00/0.16/0.08/0.06)
EF | C8 | DB | |
---|---|---|---|
RGB | 239 | 200 | 219 |
HSL | 331° | 54.93% | 86.08% |
HSB/HSV | 331° | 16.32% | 93.73% |
CMYK | 0.00% | 16.32% | 8.37% |
6.27% |
HEX | EF | C8 | DB |
Decimal | 239 | 200 | 219 |
Binary | 11101111 | 11001000 | 11011011 |
Octal | 357 | 310 | 333 |
Examples of css and html codes for elements with #EFC8DB color. Also use rgb(239,200,219) instead hex code.
.myTextColor { color: #EFC8DB; }
<p style="color:#EFC8DB">This sample text font color is #EFC8DB.</p>
This text font color is #EFC8DB.
.myBgColor { background-color: #EFC8DB; }
<div style="background-color:#EFC8DB">Inner text</div>
This div background color is #EFC8DB.
.myBorderColor { border: 1px solid #EFC8DB; }
<div style="border:3px solid #EFC8DB">Div</div>
This div border color is #EFC8DB.
.myOpacity80 { color: #EFC8DB; opacity: 0.8; }
<p style="color:#EFC8DB;opacity:0.8;">80%</p>
Text with #EFC8DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFC8DB;}
<p style="text-shadow: 3px 3px 1px #EFC8DB">Text here.</p>
This text has shadow with #EFC8DB color.
.textShadow {text-shadow: 3px 3px 1px #EFC8DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFC8DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFC8DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFC8DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFC8DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFC8DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFC8DB; -webkit-box-shadow: 1px 1px 3px 2px #EFC8DB; box-shadow: 1px 1px 3px 2px #EFC8DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFC8DB; -webkit-box-shadow: 1px 1px 3px 2px #EFC8DB; box-shadow:1px 1px 3px 2px #EFC8DB;">
Div content here</div>
This text has color #EFC8DB on black background.
This text has color #EFC8DB on white background.
This text has black color on #EFC8DB background.
This text has white color on #EFC8DB background.