HEX: #EFD1DA
RGB: (239,209,218)
#EFD1DA contains red, green and blue colors in about the same proportion. Web safe color of #EFD1DA is #FFCCCC (or #FCC).
#EFD1DA color RGB value is (239,209,218).
RGB: (239,209,218) (94%,82%,85%)
R 239 of 255 = 94%
G 209 of 255 = 82%
B 218 of 255 = 85%
R + G + B ~ 87%. #EFD1DA is light color.
R + G + B =
239 + 209 + 218 = 666 (100%)
R 239 of 666 ~ 35.89%
G 209 of 666 ~ 31.38%
B 218 of 666 ~ 32.73%
#EFD1DA color CMYK value is (0,13,9,6).
CMYK: (0,13,9,6) C0M13Y9K6 (0%,13%,9%,6%) (0.00/0.13/0.09/0.06)
EF | D1 | DA | |
---|---|---|---|
RGB | 239 | 209 | 218 |
HSL | 342° | 48.39% | 87.84% |
HSB/HSV | 342° | 12.55% | 93.73% |
CMYK | 0.00% | 12.55% | 8.79% |
6.27% |
HEX | EF | D1 | DA |
Decimal | 239 | 209 | 218 |
Binary | 11101111 | 11010001 | 11011010 |
Octal | 357 | 321 | 332 |
Examples of css and html codes for elements with #EFD1DA color. Also use rgb(239,209,218) instead hex code.
.myTextColor { color: #EFD1DA; }
<p style="color:#EFD1DA">This sample text font color is #EFD1DA.</p>
This text font color is #EFD1DA.
.myBgColor { background-color: #EFD1DA; }
<div style="background-color:#EFD1DA">Inner text</div>
This div background color is #EFD1DA.
.myBorderColor { border: 1px solid #EFD1DA; }
<div style="border:3px solid #EFD1DA">Div</div>
This div border color is #EFD1DA.
.myOpacity80 { color: #EFD1DA; opacity: 0.8; }
<p style="color:#EFD1DA;opacity:0.8;">80%</p>
Text with #EFD1DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD1DA;}
<p style="text-shadow: 3px 3px 1px #EFD1DA">Text here.</p>
This text has shadow with #EFD1DA color.
.textShadow {text-shadow: 3px 3px 1px #EFD1DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD1DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD1DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD1DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD1DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD1DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD1DA; -webkit-box-shadow: 1px 1px 3px 2px #EFD1DA; box-shadow: 1px 1px 3px 2px #EFD1DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD1DA; -webkit-box-shadow: 1px 1px 3px 2px #EFD1DA; box-shadow:1px 1px 3px 2px #EFD1DA;">
Div content here</div>
This text has color #EFD1DA on black background.
This text has color #EFD1DA on white background.
This text has black color on #EFD1DA background.
This text has white color on #EFD1DA background.