HEX: #FEE0EA
RGB: (254,224,234)
#FEE0EA contains red, green and blue colors in about the same proportion. Web safe color of #FEE0EA is #FFCCFF (or #FCF).
#FEE0EA color RGB value is (254,224,234).
RGB: (254,224,234) (100%,88%,92%)
R 254 of 255 = 100%
G 224 of 255 = 88%
B 234 of 255 = 92%
R + G + B ~ 93%. #FEE0EA is light color.
R + G + B =
254 + 224 + 234 = 712 (100%)
R 254 of 712 ~ 35.67%
G 224 of 712 ~ 31.46%
B 234 of 712 ~ 32.87%
#FEE0EA color CMYK value is (0,12,8,0).
CMYK: (0,12,8,0) C0M12Y8K0 (0%,12%,8%,0%) (0.00/0.12/0.08/0.00)
FE | E0 | EA | |
---|---|---|---|
RGB | 254 | 224 | 234 |
HSL | 340° | 93.75% | 93.73% |
HSB/HSV | 340° | 11.81% | 99.61% |
CMYK | 0.00% | 11.81% | 7.87% |
0.39% |
HEX | FE | E0 | EA |
Decimal | 254 | 224 | 234 |
Binary | 11111110 | 11100000 | 11101010 |
Octal | 376 | 340 | 352 |
Examples of css and html codes for elements with #FEE0EA color. Also use rgb(254,224,234) instead hex code.
.myTextColor { color: #FEE0EA; }
<p style="color:#FEE0EA">This sample text font color is #FEE0EA.</p>
This text font color is #FEE0EA.
.myBgColor { background-color: #FEE0EA; }
<div style="background-color:#FEE0EA">Inner text</div>
This div background color is #FEE0EA.
.myBorderColor { border: 1px solid #FEE0EA; }
<div style="border:3px solid #FEE0EA">Div</div>
This div border color is #FEE0EA.
.myOpacity80 { color: #FEE0EA; opacity: 0.8; }
<p style="color:#FEE0EA;opacity:0.8;">80%</p>
Text with #FEE0EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEE0EA;}
<p style="text-shadow: 3px 3px 1px #FEE0EA">Text here.</p>
This text has shadow with #FEE0EA color.
.textShadow {text-shadow: 3px 3px 1px #FEE0EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEE0EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEE0EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEE0EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEE0EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEE0EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEE0EA; -webkit-box-shadow: 1px 1px 3px 2px #FEE0EA; box-shadow: 1px 1px 3px 2px #FEE0EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEE0EA; -webkit-box-shadow: 1px 1px 3px 2px #FEE0EA; box-shadow:1px 1px 3px 2px #FEE0EA;">
Div content here</div>
This text has color #FEE0EA on black background.
This text has color #FEE0EA on white background.
This text has black color on #FEE0EA background.
This text has white color on #FEE0EA background.