HEX: #EAD5FD
RGB: (234,213,253)
#EAD5FD contains red, green and blue colors in about the same proportion. Web safe color of #EAD5FD is #FFCCFF (or #FCF).
#EAD5FD color RGB value is (234,213,253).
RGB: (234,213,253) (92%,84%,99%)
R 234 of 255 = 92%
G 213 of 255 = 84%
B 253 of 255 = 99%
R + G + B ~ 92%. #EAD5FD is light color.
R + G + B =
234 + 213 + 253 = 700 (100%)
R 234 of 700 ~ 33.43%
G 213 of 700 ~ 30.43%
B 253 of 700 ~ 36.14%
#EAD5FD color CMYK value is (8,16,0,1).
CMYK: (8,16,0,1) C8M16Y0K1 (8%,16%,0%,1%) (0.08/0.16/0.00/0.01)
EA | D5 | FD | |
---|---|---|---|
RGB | 234 | 213 | 253 |
HSL | 272° | 90.91% | 91.37% |
HSB/HSV | 272° | 15.81% | 99.22% |
CMYK | 7.51% | 15.81% | 0.00% |
0.78% |
HEX | EA | D5 | FD |
Decimal | 234 | 213 | 253 |
Binary | 11101010 | 11010101 | 11111101 |
Octal | 352 | 325 | 375 |
Examples of css and html codes for elements with #EAD5FD color. Also use rgb(234,213,253) instead hex code.
.myTextColor { color: #EAD5FD; }
<p style="color:#EAD5FD">This sample text font color is #EAD5FD.</p>
This text font color is #EAD5FD.
.myBgColor { background-color: #EAD5FD; }
<div style="background-color:#EAD5FD">Inner text</div>
This div background color is #EAD5FD.
.myBorderColor { border: 1px solid #EAD5FD; }
<div style="border:3px solid #EAD5FD">Div</div>
This div border color is #EAD5FD.
.myOpacity80 { color: #EAD5FD; opacity: 0.8; }
<p style="color:#EAD5FD;opacity:0.8;">80%</p>
Text with #EAD5FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EAD5FD;}
<p style="text-shadow: 3px 3px 1px #EAD5FD">Text here.</p>
This text has shadow with #EAD5FD color.
.textShadow {text-shadow: 3px 3px 1px #EAD5FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EAD5FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EAD5FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EAD5FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EAD5FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EAD5FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EAD5FD; -webkit-box-shadow: 1px 1px 3px 2px #EAD5FD; box-shadow: 1px 1px 3px 2px #EAD5FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EAD5FD; -webkit-box-shadow: 1px 1px 3px 2px #EAD5FD; box-shadow:1px 1px 3px 2px #EAD5FD;">
Div content here</div>
This text has color #EAD5FD on black background.
This text has color #EAD5FD on white background.
This text has black color on #EAD5FD background.
This text has white color on #EAD5FD background.