HEX: #EFD8DF
RGB: (239,216,223)
#EFD8DF contains red, green and blue colors in about the same proportion. Web safe color of #EFD8DF is #FFCCCC (or #FCC).
#EFD8DF color RGB value is (239,216,223).
RGB: (239,216,223) (94%,85%,87%)
R 239 of 255 = 94%
G 216 of 255 = 85%
B 223 of 255 = 87%
R + G + B ~ 89%. #EFD8DF is light color.
R + G + B =
239 + 216 + 223 = 678 (100%)
R 239 of 678 ~ 35.25%
G 216 of 678 ~ 31.86%
B 223 of 678 ~ 32.89%
#EFD8DF color CMYK value is (0,10,7,6).
CMYK: (0,10,7,6) C0M10Y7K6 (0%,10%,7%,6%) (0.00/0.10/0.07/0.06)
EF | D8 | DF | |
---|---|---|---|
RGB | 239 | 216 | 223 |
HSL | 342° | 41.82% | 89.22% |
HSB/HSV | 342° | 9.62% | 93.73% |
CMYK | 0.00% | 9.62% | 6.69% |
6.27% |
HEX | EF | D8 | DF |
Decimal | 239 | 216 | 223 |
Binary | 11101111 | 11011000 | 11011111 |
Octal | 357 | 330 | 337 |
Examples of css and html codes for elements with #EFD8DF color. Also use rgb(239,216,223) instead hex code.
.myTextColor { color: #EFD8DF; }
<p style="color:#EFD8DF">This sample text font color is #EFD8DF.</p>
This text font color is #EFD8DF.
.myBgColor { background-color: #EFD8DF; }
<div style="background-color:#EFD8DF">Inner text</div>
This div background color is #EFD8DF.
.myBorderColor { border: 1px solid #EFD8DF; }
<div style="border:3px solid #EFD8DF">Div</div>
This div border color is #EFD8DF.
.myOpacity80 { color: #EFD8DF; opacity: 0.8; }
<p style="color:#EFD8DF;opacity:0.8;">80%</p>
Text with #EFD8DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD8DF;}
<p style="text-shadow: 3px 3px 1px #EFD8DF">Text here.</p>
This text has shadow with #EFD8DF color.
.textShadow {text-shadow: 3px 3px 1px #EFD8DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD8DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD8DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD8DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD8DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD8DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD8DF; -webkit-box-shadow: 1px 1px 3px 2px #EFD8DF; box-shadow: 1px 1px 3px 2px #EFD8DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD8DF; -webkit-box-shadow: 1px 1px 3px 2px #EFD8DF; box-shadow:1px 1px 3px 2px #EFD8DF;">
Div content here</div>
This text has color #EFD8DF on black background.
This text has color #EFD8DF on white background.
This text has black color on #EFD8DF background.
This text has white color on #EFD8DF background.