HEX: #F6E9EE
RGB: (246,233,238)
#F6E9EE contains red, green and blue colors in about the same proportion. Web safe color of #F6E9EE is #FFFFFF (or #FFF).
#F6E9EE color RGB value is (246,233,238).
RGB: (246,233,238) (96%,91%,93%)
R 246 of 255 = 96%
G 233 of 255 = 91%
B 238 of 255 = 93%
R + G + B ~ 93%. #F6E9EE is light color.
R + G + B =
246 + 233 + 238 = 717 (100%)
R 246 of 717 ~ 34.31%
G 233 of 717 ~ 32.5%
B 238 of 717 ~ 33.19%
#F6E9EE color CMYK value is (0,5,3,4).
CMYK: (0,5,3,4) C0M5Y3K4 (0%,5%,3%,4%) (0.00/0.05/0.03/0.04)
F6 | E9 | EE | |
---|---|---|---|
RGB | 246 | 233 | 238 |
HSL | 337° | 41.94% | 93.92% |
HSB/HSV | 337° | 5.28% | 96.47% |
CMYK | 0.00% | 5.28% | 3.25% |
3.53% |
HEX | F6 | E9 | EE |
Decimal | 246 | 233 | 238 |
Binary | 11110110 | 11101001 | 11101110 |
Octal | 366 | 351 | 356 |
Examples of css and html codes for elements with #F6E9EE color. Also use rgb(246,233,238) instead hex code.
.myTextColor { color: #F6E9EE; }
<p style="color:#F6E9EE">This sample text font color is #F6E9EE.</p>
This text font color is #F6E9EE.
.myBgColor { background-color: #F6E9EE; }
<div style="background-color:#F6E9EE">Inner text</div>
This div background color is #F6E9EE.
.myBorderColor { border: 1px solid #F6E9EE; }
<div style="border:3px solid #F6E9EE">Div</div>
This div border color is #F6E9EE.
.myOpacity80 { color: #F6E9EE; opacity: 0.8; }
<p style="color:#F6E9EE;opacity:0.8;">80%</p>
Text with #F6E9EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6E9EE;}
<p style="text-shadow: 3px 3px 1px #F6E9EE">Text here.</p>
This text has shadow with #F6E9EE color.
.textShadow {text-shadow: 3px 3px 1px #F6E9EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6E9EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6E9EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6E9EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6E9EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6E9EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6E9EE; -webkit-box-shadow: 1px 1px 3px 2px #F6E9EE; box-shadow: 1px 1px 3px 2px #F6E9EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6E9EE; -webkit-box-shadow: 1px 1px 3px 2px #F6E9EE; box-shadow:1px 1px 3px 2px #F6E9EE;">
Div content here</div>
This text has color #F6E9EE on black background.
This text has color #F6E9EE on white background.
This text has black color on #F6E9EE background.
This text has white color on #F6E9EE background.