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