HEX: #FFE7EC
RGB: (255,231,236)
#FFE7EC contains red, green and blue colors in about the same proportion. Web safe color of #FFE7EC is #FFFFFF (or #FFF).
#FFE7EC color RGB value is (255,231,236).
RGB: (255,231,236) (100%,91%,93%)
R 255 of 255 = 100%
G 231 of 255 = 91%
B 236 of 255 = 93%
R + G + B ~ 95%. #FFE7EC is light color.
R + G + B =
255 + 231 + 236 = 722 (100%)
R 255 of 722 ~ 35.32%
G 231 of 722 ~ 31.99%
B 236 of 722 ~ 32.69%
#FFE7EC color CMYK value is (0,9,7,0).
CMYK: (0,9,7,0) C0M9Y7K0 (0%,9%,7%,0%) (0.00/0.09/0.07/0.00)
FF | E7 | EC | |
---|---|---|---|
RGB | 255 | 231 | 236 |
HSL | 348° | 100.00% | 95.29% |
HSB/HSV | 348° | 9.41% | 100.00% |
CMYK | 0.00% | 9.41% | 7.45% |
0.00% |
HEX | FF | E7 | EC |
Decimal | 255 | 231 | 236 |
Binary | 11111111 | 11100111 | 11101100 |
Octal | 377 | 347 | 354 |
Examples of css and html codes for elements with #FFE7EC color. Also use rgb(255,231,236) instead hex code.
.myTextColor { color: #FFE7EC; }
<p style="color:#FFE7EC">This sample text font color is #FFE7EC.</p>
This text font color is #FFE7EC.
.myBgColor { background-color: #FFE7EC; }
<div style="background-color:#FFE7EC">Inner text</div>
This div background color is #FFE7EC.
.myBorderColor { border: 1px solid #FFE7EC; }
<div style="border:3px solid #FFE7EC">Div</div>
This div border color is #FFE7EC.
.myOpacity80 { color: #FFE7EC; opacity: 0.8; }
<p style="color:#FFE7EC;opacity:0.8;">80%</p>
Text with #FFE7EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE7EC;}
<p style="text-shadow: 3px 3px 1px #FFE7EC">Text here.</p>
This text has shadow with #FFE7EC color.
.textShadow {text-shadow: 3px 3px 1px #FFE7EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE7EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE7EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE7EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE7EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE7EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE7EC; -webkit-box-shadow: 1px 1px 3px 2px #FFE7EC; box-shadow: 1px 1px 3px 2px #FFE7EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE7EC; -webkit-box-shadow: 1px 1px 3px 2px #FFE7EC; box-shadow:1px 1px 3px 2px #FFE7EC;">
Div content here</div>
This text has color #FFE7EC on black background.
This text has color #FFE7EC on white background.
This text has black color on #FFE7EC background.
This text has white color on #FFE7EC background.