HEX: #EFD3EF
RGB: (239,211,239)
#EFD3EF contains red, green and blue colors in about the same proportion. Web safe color of #EFD3EF is #FFCCFF (or #FCF).
#EFD3EF color RGB value is (239,211,239).
RGB: (239,211,239) (94%,83%,94%)
R 239 of 255 = 94%
G 211 of 255 = 83%
B 239 of 255 = 94%
R + G + B ~ 90%. #EFD3EF is light color.
R + G + B =
239 + 211 + 239 = 689 (100%)
R 239 of 689 ~ 34.69%
G 211 of 689 ~ 30.62%
B 239 of 689 ~ 34.69%
#EFD3EF color CMYK value is (0,12,0,6).
CMYK: (0,12,0,6) C0M12Y0K6 (0%,12%,0%,6%) (0.00/0.12/0.00/0.06)
EF | D3 | EF | |
---|---|---|---|
RGB | 239 | 211 | 239 |
HSL | 300° | 46.67% | 88.24% |
HSB/HSV | 300° | 11.72% | 93.73% |
CMYK | 0.00% | 11.72% | 0.00% |
6.27% |
HEX | EF | D3 | EF |
Decimal | 239 | 211 | 239 |
Binary | 11101111 | 11010011 | 11101111 |
Octal | 357 | 323 | 357 |
Examples of css and html codes for elements with #EFD3EF color. Also use rgb(239,211,239) instead hex code.
.myTextColor { color: #EFD3EF; }
<p style="color:#EFD3EF">This sample text font color is #EFD3EF.</p>
This text font color is #EFD3EF.
.myBgColor { background-color: #EFD3EF; }
<div style="background-color:#EFD3EF">Inner text</div>
This div background color is #EFD3EF.
.myBorderColor { border: 1px solid #EFD3EF; }
<div style="border:3px solid #EFD3EF">Div</div>
This div border color is #EFD3EF.
.myOpacity80 { color: #EFD3EF; opacity: 0.8; }
<p style="color:#EFD3EF;opacity:0.8;">80%</p>
Text with #EFD3EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD3EF;}
<p style="text-shadow: 3px 3px 1px #EFD3EF">Text here.</p>
This text has shadow with #EFD3EF color.
.textShadow {text-shadow: 3px 3px 1px #EFD3EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD3EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD3EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD3EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD3EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD3EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD3EF; -webkit-box-shadow: 1px 1px 3px 2px #EFD3EF; box-shadow: 1px 1px 3px 2px #EFD3EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD3EF; -webkit-box-shadow: 1px 1px 3px 2px #EFD3EF; box-shadow:1px 1px 3px 2px #EFD3EF;">
Div content here</div>
This text has color #EFD3EF on black background.
This text has color #EFD3EF on white background.
This text has black color on #EFD3EF background.
This text has white color on #EFD3EF background.