HEX: #E4CFEA
RGB: (228,207,234)
#E4CFEA contains red, green and blue colors in about the same proportion. Web safe color of #E4CFEA is #CCCCFF (or #CCF).
#E4CFEA color RGB value is (228,207,234).
RGB: (228,207,234) (89%,81%,92%)
R 228 of 255 = 89%
G 207 of 255 = 81%
B 234 of 255 = 92%
R + G + B ~ 87%. #E4CFEA is light color.
R + G + B =
228 + 207 + 234 = 669 (100%)
R 228 of 669 ~ 34.08%
G 207 of 669 ~ 30.94%
B 234 of 669 ~ 34.98%
#E4CFEA color CMYK value is (3,12,0,8).
CMYK: (3,12,0,8) C3M12Y0K8 (3%,12%,0%,8%) (0.03/0.12/0.00/0.08)
E4 | CF | EA | |
---|---|---|---|
RGB | 228 | 207 | 234 |
HSL | 287° | 39.13% | 86.47% |
HSB/HSV | 287° | 11.54% | 91.76% |
CMYK | 2.56% | 11.54% | 0.00% |
8.24% |
HEX | E4 | CF | EA |
Decimal | 228 | 207 | 234 |
Binary | 11100100 | 11001111 | 11101010 |
Octal | 344 | 317 | 352 |
Examples of css and html codes for elements with #E4CFEA color. Also use rgb(228,207,234) instead hex code.
.myTextColor { color: #E4CFEA; }
<p style="color:#E4CFEA">This sample text font color is #E4CFEA.</p>
This text font color is #E4CFEA.
.myBgColor { background-color: #E4CFEA; }
<div style="background-color:#E4CFEA">Inner text</div>
This div background color is #E4CFEA.
.myBorderColor { border: 1px solid #E4CFEA; }
<div style="border:3px solid #E4CFEA">Div</div>
This div border color is #E4CFEA.
.myOpacity80 { color: #E4CFEA; opacity: 0.8; }
<p style="color:#E4CFEA;opacity:0.8;">80%</p>
Text with #E4CFEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4CFEA;}
<p style="text-shadow: 3px 3px 1px #E4CFEA">Text here.</p>
This text has shadow with #E4CFEA color.
.textShadow {text-shadow: 3px 3px 1px #E4CFEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4CFEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4CFEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4CFEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4CFEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4CFEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4CFEA; -webkit-box-shadow: 1px 1px 3px 2px #E4CFEA; box-shadow: 1px 1px 3px 2px #E4CFEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4CFEA; -webkit-box-shadow: 1px 1px 3px 2px #E4CFEA; box-shadow:1px 1px 3px 2px #E4CFEA;">
Div content here</div>
This text has color #E4CFEA on black background.
This text has color #E4CFEA on white background.
This text has black color on #E4CFEA background.
This text has white color on #E4CFEA background.