HEX: #FFE4EA
RGB: (255,228,234)
#FFE4EA contains red, green and blue colors in about the same proportion. Web safe color of #FFE4EA is #FFCCFF (or #FCF).
#FFE4EA color RGB value is (255,228,234).
RGB: (255,228,234) (100%,89%,92%)
R 255 of 255 = 100%
G 228 of 255 = 89%
B 234 of 255 = 92%
R + G + B ~ 94%. #FFE4EA is light color.
R + G + B =
255 + 228 + 234 = 717 (100%)
R 255 of 717 ~ 35.56%
G 228 of 717 ~ 31.8%
B 234 of 717 ~ 32.64%
#FFE4EA color CMYK value is (0,11,8,0).
CMYK: (0,11,8,0) C0M11Y8K0 (0%,11%,8%,0%) (0.00/0.11/0.08/0.00)
FF | E4 | EA | |
---|---|---|---|
RGB | 255 | 228 | 234 |
HSL | 347° | 100.00% | 94.71% |
HSB/HSV | 347° | 10.59% | 100.00% |
CMYK | 0.00% | 10.59% | 8.24% |
0.00% |
HEX | FF | E4 | EA |
Decimal | 255 | 228 | 234 |
Binary | 11111111 | 11100100 | 11101010 |
Octal | 377 | 344 | 352 |
Examples of css and html codes for elements with #FFE4EA color. Also use rgb(255,228,234) instead hex code.
.myTextColor { color: #FFE4EA; }
<p style="color:#FFE4EA">This sample text font color is #FFE4EA.</p>
This text font color is #FFE4EA.
.myBgColor { background-color: #FFE4EA; }
<div style="background-color:#FFE4EA">Inner text</div>
This div background color is #FFE4EA.
.myBorderColor { border: 1px solid #FFE4EA; }
<div style="border:3px solid #FFE4EA">Div</div>
This div border color is #FFE4EA.
.myOpacity80 { color: #FFE4EA; opacity: 0.8; }
<p style="color:#FFE4EA;opacity:0.8;">80%</p>
Text with #FFE4EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE4EA;}
<p style="text-shadow: 3px 3px 1px #FFE4EA">Text here.</p>
This text has shadow with #FFE4EA color.
.textShadow {text-shadow: 3px 3px 1px #FFE4EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE4EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE4EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE4EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE4EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE4EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE4EA; -webkit-box-shadow: 1px 1px 3px 2px #FFE4EA; box-shadow: 1px 1px 3px 2px #FFE4EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE4EA; -webkit-box-shadow: 1px 1px 3px 2px #FFE4EA; box-shadow:1px 1px 3px 2px #FFE4EA;">
Div content here</div>
This text has color #FFE4EA on black background.
This text has color #FFE4EA on white background.
This text has black color on #FFE4EA background.
This text has white color on #FFE4EA background.