HEX: #FFE3EF
RGB: (255,227,239)
#FFE3EF contains red, green and blue colors in about the same proportion. Web safe color of #FFE3EF is #FFCCFF (or #FCF).
#FFE3EF color RGB value is (255,227,239).
RGB: (255,227,239) (100%,89%,94%)
R 255 of 255 = 100%
G 227 of 255 = 89%
B 239 of 255 = 94%
R + G + B ~ 94%. #FFE3EF is light color.
R + G + B =
255 + 227 + 239 = 721 (100%)
R 255 of 721 ~ 35.37%
G 227 of 721 ~ 31.48%
B 239 of 721 ~ 33.15%
#FFE3EF color CMYK value is (0,11,6,0).
CMYK: (0,11,6,0) C0M11Y6K0 (0%,11%,6%,0%) (0.00/0.11/0.06/0.00)
FF | E3 | EF | |
---|---|---|---|
RGB | 255 | 227 | 239 |
HSL | 334° | 100.00% | 94.51% |
HSB/HSV | 334° | 10.98% | 100.00% |
CMYK | 0.00% | 10.98% | 6.27% |
0.00% |
HEX | FF | E3 | EF |
Decimal | 255 | 227 | 239 |
Binary | 11111111 | 11100011 | 11101111 |
Octal | 377 | 343 | 357 |
Examples of css and html codes for elements with #FFE3EF color. Also use rgb(255,227,239) instead hex code.
.myTextColor { color: #FFE3EF; }
<p style="color:#FFE3EF">This sample text font color is #FFE3EF.</p>
This text font color is #FFE3EF.
.myBgColor { background-color: #FFE3EF; }
<div style="background-color:#FFE3EF">Inner text</div>
This div background color is #FFE3EF.
.myBorderColor { border: 1px solid #FFE3EF; }
<div style="border:3px solid #FFE3EF">Div</div>
This div border color is #FFE3EF.
.myOpacity80 { color: #FFE3EF; opacity: 0.8; }
<p style="color:#FFE3EF;opacity:0.8;">80%</p>
Text with #FFE3EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE3EF;}
<p style="text-shadow: 3px 3px 1px #FFE3EF">Text here.</p>
This text has shadow with #FFE3EF color.
.textShadow {text-shadow: 3px 3px 1px #FFE3EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE3EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE3EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE3EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE3EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE3EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE3EF; -webkit-box-shadow: 1px 1px 3px 2px #FFE3EF; box-shadow: 1px 1px 3px 2px #FFE3EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE3EF; -webkit-box-shadow: 1px 1px 3px 2px #FFE3EF; box-shadow:1px 1px 3px 2px #FFE3EF;">
Div content here</div>
This text has color #FFE3EF on black background.
This text has color #FFE3EF on white background.
This text has black color on #FFE3EF background.
This text has white color on #FFE3EF background.