HEX: #E8C4FD
RGB: (232,196,253)
#E8C4FD contains red, green and blue colors in about the same proportion. Web safe color of #E8C4FD is #FFCCFF (or #FCF).
#E8C4FD color RGB value is (232,196,253).
RGB: (232,196,253) (91%,77%,99%)
R 232 of 255 = 91%
G 196 of 255 = 77%
B 253 of 255 = 99%
R + G + B ~ 89%. #E8C4FD is light color.
R + G + B =
232 + 196 + 253 = 681 (100%)
R 232 of 681 ~ 34.07%
G 196 of 681 ~ 28.78%
B 253 of 681 ~ 37.15%
#E8C4FD color CMYK value is (8,23,0,1).
CMYK: (8,23,0,1) C8M23Y0K1 (8%,23%,0%,1%) (0.08/0.23/0.00/0.01)
E8 | C4 | FD | |
---|---|---|---|
RGB | 232 | 196 | 253 |
HSL | 278° | 93.44% | 88.04% |
HSB/HSV | 278° | 22.53% | 99.22% |
CMYK | 8.30% | 22.53% | 0.00% |
0.78% |
HEX | E8 | C4 | FD |
Decimal | 232 | 196 | 253 |
Binary | 11101000 | 11000100 | 11111101 |
Octal | 350 | 304 | 375 |
Examples of css and html codes for elements with #E8C4FD color. Also use rgb(232,196,253) instead hex code.
.myTextColor { color: #E8C4FD; }
<p style="color:#E8C4FD">This sample text font color is #E8C4FD.</p>
This text font color is #E8C4FD.
.myBgColor { background-color: #E8C4FD; }
<div style="background-color:#E8C4FD">Inner text</div>
This div background color is #E8C4FD.
.myBorderColor { border: 1px solid #E8C4FD; }
<div style="border:3px solid #E8C4FD">Div</div>
This div border color is #E8C4FD.
.myOpacity80 { color: #E8C4FD; opacity: 0.8; }
<p style="color:#E8C4FD;opacity:0.8;">80%</p>
Text with #E8C4FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E8C4FD;}
<p style="text-shadow: 3px 3px 1px #E8C4FD">Text here.</p>
This text has shadow with #E8C4FD color.
.textShadow {text-shadow: 3px 3px 1px #E8C4FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E8C4FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E8C4FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E8C4FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E8C4FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E8C4FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E8C4FD; -webkit-box-shadow: 1px 1px 3px 2px #E8C4FD; box-shadow: 1px 1px 3px 2px #E8C4FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E8C4FD; -webkit-box-shadow: 1px 1px 3px 2px #E8C4FD; box-shadow:1px 1px 3px 2px #E8C4FD;">
Div content here</div>
This text has color #E8C4FD on black background.
This text has color #E8C4FD on white background.
This text has black color on #E8C4FD background.
This text has white color on #E8C4FD background.