HEX: #FEE5EF
RGB: (254,229,239)
#FEE5EF contains red, green and blue colors in about the same proportion. Web safe color of #FEE5EF is #FFCCFF (or #FCF).
#FEE5EF color RGB value is (254,229,239).
RGB: (254,229,239) (100%,90%,94%)
R 254 of 255 = 100%
G 229 of 255 = 90%
B 239 of 255 = 94%
R + G + B ~ 95%. #FEE5EF is light color.
R + G + B =
254 + 229 + 239 = 722 (100%)
R 254 of 722 ~ 35.18%
G 229 of 722 ~ 31.72%
B 239 of 722 ~ 33.1%
#FEE5EF color CMYK value is (0,10,6,0).
CMYK: (0,10,6,0) C0M10Y6K0 (0%,10%,6%,0%) (0.00/0.10/0.06/0.00)
FE | E5 | EF | |
---|---|---|---|
RGB | 254 | 229 | 239 |
HSL | 336° | 92.59% | 94.71% |
HSB/HSV | 336° | 9.84% | 99.61% |
CMYK | 0.00% | 9.84% | 5.91% |
0.39% |
HEX | FE | E5 | EF |
Decimal | 254 | 229 | 239 |
Binary | 11111110 | 11100101 | 11101111 |
Octal | 376 | 345 | 357 |
Examples of css and html codes for elements with #FEE5EF color. Also use rgb(254,229,239) instead hex code.
.myTextColor { color: #FEE5EF; }
<p style="color:#FEE5EF">This sample text font color is #FEE5EF.</p>
This text font color is #FEE5EF.
.myBgColor { background-color: #FEE5EF; }
<div style="background-color:#FEE5EF">Inner text</div>
This div background color is #FEE5EF.
.myBorderColor { border: 1px solid #FEE5EF; }
<div style="border:3px solid #FEE5EF">Div</div>
This div border color is #FEE5EF.
.myOpacity80 { color: #FEE5EF; opacity: 0.8; }
<p style="color:#FEE5EF;opacity:0.8;">80%</p>
Text with #FEE5EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEE5EF;}
<p style="text-shadow: 3px 3px 1px #FEE5EF">Text here.</p>
This text has shadow with #FEE5EF color.
.textShadow {text-shadow: 3px 3px 1px #FEE5EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEE5EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEE5EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEE5EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEE5EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEE5EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEE5EF; -webkit-box-shadow: 1px 1px 3px 2px #FEE5EF; box-shadow: 1px 1px 3px 2px #FEE5EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEE5EF; -webkit-box-shadow: 1px 1px 3px 2px #FEE5EF; box-shadow:1px 1px 3px 2px #FEE5EF;">
Div content here</div>
This text has color #FEE5EF on black background.
This text has color #FEE5EF on white background.
This text has black color on #FEE5EF background.
This text has white color on #FEE5EF background.