HEX: #EED4FD
RGB: (238,212,253)
#EED4FD contains red, green and blue colors in about the same proportion. Web safe color of #EED4FD is #FFCCFF (or #FCF).
#EED4FD color RGB value is (238,212,253).
RGB: (238,212,253) (93%,83%,99%)
R 238 of 255 = 93%
G 212 of 255 = 83%
B 253 of 255 = 99%
R + G + B ~ 92%. #EED4FD is light color.
R + G + B =
238 + 212 + 253 = 703 (100%)
R 238 of 703 ~ 33.85%
G 212 of 703 ~ 30.16%
B 253 of 703 ~ 35.99%
#EED4FD color CMYK value is (6,16,0,1).
CMYK: (6,16,0,1) C6M16Y0K1 (6%,16%,0%,1%) (0.06/0.16/0.00/0.01)
EE | D4 | FD | |
---|---|---|---|
RGB | 238 | 212 | 253 |
HSL | 278° | 91.11% | 91.18% |
HSB/HSV | 278° | 16.21% | 99.22% |
CMYK | 5.93% | 16.21% | 0.00% |
0.78% |
HEX | EE | D4 | FD |
Decimal | 238 | 212 | 253 |
Binary | 11101110 | 11010100 | 11111101 |
Octal | 356 | 324 | 375 |
Examples of css and html codes for elements with #EED4FD color. Also use rgb(238,212,253) instead hex code.
.myTextColor { color: #EED4FD; }
<p style="color:#EED4FD">This sample text font color is #EED4FD.</p>
This text font color is #EED4FD.
.myBgColor { background-color: #EED4FD; }
<div style="background-color:#EED4FD">Inner text</div>
This div background color is #EED4FD.
.myBorderColor { border: 1px solid #EED4FD; }
<div style="border:3px solid #EED4FD">Div</div>
This div border color is #EED4FD.
.myOpacity80 { color: #EED4FD; opacity: 0.8; }
<p style="color:#EED4FD;opacity:0.8;">80%</p>
Text with #EED4FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED4FD;}
<p style="text-shadow: 3px 3px 1px #EED4FD">Text here.</p>
This text has shadow with #EED4FD color.
.textShadow {text-shadow: 3px 3px 1px #EED4FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED4FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED4FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED4FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED4FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED4FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED4FD; -webkit-box-shadow: 1px 1px 3px 2px #EED4FD; box-shadow: 1px 1px 3px 2px #EED4FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED4FD; -webkit-box-shadow: 1px 1px 3px 2px #EED4FD; box-shadow:1px 1px 3px 2px #EED4FD;">
Div content here</div>
This text has color #EED4FD on black background.
This text has color #EED4FD on white background.
This text has black color on #EED4FD background.
This text has white color on #EED4FD background.