HEX: #EFD9FF
RGB: (239,217,255)
#EFD9FF contains red, green and blue colors in about the same proportion. Web safe color of #EFD9FF is #FFCCFF (or #FCF).
#EFD9FF color RGB value is (239,217,255).
RGB: (239,217,255) (94%,85%,100%)
R 239 of 255 = 94%
G 217 of 255 = 85%
B 255 of 255 = 100%
R + G + B ~ 93%. #EFD9FF is light color.
R + G + B =
239 + 217 + 255 = 711 (100%)
R 239 of 711 ~ 33.61%
G 217 of 711 ~ 30.52%
B 255 of 711 ~ 35.86%
#EFD9FF color CMYK value is (6,15,0,0).
CMYK: (6,15,0,0) C6M15Y0K0 (6%,15%,0%,0%) (0.06/0.15/0.00/0.00)
EF | D9 | FF | |
---|---|---|---|
RGB | 239 | 217 | 255 |
HSL | 275° | 100.00% | 92.55% |
HSB/HSV | 275° | 14.90% | 100.00% |
CMYK | 6.27% | 14.90% | 0.00% |
0.00% |
HEX | EF | D9 | FF |
Decimal | 239 | 217 | 255 |
Binary | 11101111 | 11011001 | 11111111 |
Octal | 357 | 331 | 377 |
Examples of css and html codes for elements with #EFD9FF color. Also use rgb(239,217,255) instead hex code.
.myTextColor { color: #EFD9FF; }
<p style="color:#EFD9FF">This sample text font color is #EFD9FF.</p>
This text font color is #EFD9FF.
.myBgColor { background-color: #EFD9FF; }
<div style="background-color:#EFD9FF">Inner text</div>
This div background color is #EFD9FF.
.myBorderColor { border: 1px solid #EFD9FF; }
<div style="border:3px solid #EFD9FF">Div</div>
This div border color is #EFD9FF.
.myOpacity80 { color: #EFD9FF; opacity: 0.8; }
<p style="color:#EFD9FF;opacity:0.8;">80%</p>
Text with #EFD9FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD9FF;}
<p style="text-shadow: 3px 3px 1px #EFD9FF">Text here.</p>
This text has shadow with #EFD9FF color.
.textShadow {text-shadow: 3px 3px 1px #EFD9FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD9FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD9FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD9FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD9FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD9FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD9FF; -webkit-box-shadow: 1px 1px 3px 2px #EFD9FF; box-shadow: 1px 1px 3px 2px #EFD9FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD9FF; -webkit-box-shadow: 1px 1px 3px 2px #EFD9FF; box-shadow:1px 1px 3px 2px #EFD9FF;">
Div content here</div>
This text has color #EFD9FF on black background.
This text has color #EFD9FF on white background.
This text has black color on #EFD9FF background.
This text has white color on #EFD9FF background.