HEX: #EFB8DE
RGB: (239,184,222)
#EFB8DE contains red, green and blue colors in about the same proportion. Web safe color of #EFB8DE is #FFCCCC (or #FCC).
#EFB8DE color RGB value is (239,184,222).
RGB: (239,184,222) (94%,72%,87%)
R 239 of 255 = 94%
G 184 of 255 = 72%
B 222 of 255 = 87%
R + G + B ~ 84%. #EFB8DE is quite light color.
R + G + B =
239 + 184 + 222 = 645 (100%)
R 239 of 645 ~ 37.05%
G 184 of 645 ~ 28.53%
B 222 of 645 ~ 34.42%
#EFB8DE color CMYK value is (0,23,7,6).
CMYK: (0,23,7,6) C0M23Y7K6 (0%,23%,7%,6%) (0.00/0.23/0.07/0.06)
EF | B8 | DE | |
---|---|---|---|
RGB | 239 | 184 | 222 |
HSL | 319° | 63.22% | 82.94% |
HSB/HSV | 319° | 23.01% | 93.73% |
CMYK | 0.00% | 23.01% | 7.11% |
6.27% |
HEX | EF | B8 | DE |
Decimal | 239 | 184 | 222 |
Binary | 11101111 | 10111000 | 11011110 |
Octal | 357 | 270 | 336 |
Examples of css and html codes for elements with #EFB8DE color. Also use rgb(239,184,222) instead hex code.
.myTextColor { color: #EFB8DE; }
<p style="color:#EFB8DE">This sample text font color is #EFB8DE.</p>
This text font color is #EFB8DE.
.myBgColor { background-color: #EFB8DE; }
<div style="background-color:#EFB8DE">Inner text</div>
This div background color is #EFB8DE.
.myBorderColor { border: 1px solid #EFB8DE; }
<div style="border:3px solid #EFB8DE">Div</div>
This div border color is #EFB8DE.
.myOpacity80 { color: #EFB8DE; opacity: 0.8; }
<p style="color:#EFB8DE;opacity:0.8;">80%</p>
Text with #EFB8DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFB8DE;}
<p style="text-shadow: 3px 3px 1px #EFB8DE">Text here.</p>
This text has shadow with #EFB8DE color.
.textShadow {text-shadow: 3px 3px 1px #EFB8DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFB8DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFB8DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFB8DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFB8DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFB8DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFB8DE; -webkit-box-shadow: 1px 1px 3px 2px #EFB8DE; box-shadow: 1px 1px 3px 2px #EFB8DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFB8DE; -webkit-box-shadow: 1px 1px 3px 2px #EFB8DE; box-shadow:1px 1px 3px 2px #EFB8DE;">
Div content here</div>
This text has color #EFB8DE on black background.
This text has color #EFB8DE on white background.
This text has black color on #EFB8DE background.
This text has white color on #EFB8DE background.