HEX: #F6E2EE
RGB: (246,226,238)
#F6E2EE contains red, green and blue colors in about the same proportion. Web safe color of #F6E2EE is #FFCCFF (or #FCF).
#F6E2EE color RGB value is (246,226,238).
RGB: (246,226,238) (96%,89%,93%)
R 246 of 255 = 96%
G 226 of 255 = 89%
B 238 of 255 = 93%
R + G + B ~ 93%. #F6E2EE is light color.
R + G + B =
246 + 226 + 238 = 710 (100%)
R 246 of 710 ~ 34.65%
G 226 of 710 ~ 31.83%
B 238 of 710 ~ 33.52%
#F6E2EE color CMYK value is (0,8,3,4).
CMYK: (0,8,3,4) C0M8Y3K4 (0%,8%,3%,4%) (0.00/0.08/0.03/0.04)
F6 | E2 | EE | |
---|---|---|---|
RGB | 246 | 226 | 238 |
HSL | 324° | 52.63% | 92.55% |
HSB/HSV | 324° | 8.13% | 96.47% |
CMYK | 0.00% | 8.13% | 3.25% |
3.53% |
HEX | F6 | E2 | EE |
Decimal | 246 | 226 | 238 |
Binary | 11110110 | 11100010 | 11101110 |
Octal | 366 | 342 | 356 |
Examples of css and html codes for elements with #F6E2EE color. Also use rgb(246,226,238) instead hex code.
.myTextColor { color: #F6E2EE; }
<p style="color:#F6E2EE">This sample text font color is #F6E2EE.</p>
This text font color is #F6E2EE.
.myBgColor { background-color: #F6E2EE; }
<div style="background-color:#F6E2EE">Inner text</div>
This div background color is #F6E2EE.
.myBorderColor { border: 1px solid #F6E2EE; }
<div style="border:3px solid #F6E2EE">Div</div>
This div border color is #F6E2EE.
.myOpacity80 { color: #F6E2EE; opacity: 0.8; }
<p style="color:#F6E2EE;opacity:0.8;">80%</p>
Text with #F6E2EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6E2EE;}
<p style="text-shadow: 3px 3px 1px #F6E2EE">Text here.</p>
This text has shadow with #F6E2EE color.
.textShadow {text-shadow: 3px 3px 1px #F6E2EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6E2EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6E2EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6E2EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6E2EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6E2EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6E2EE; -webkit-box-shadow: 1px 1px 3px 2px #F6E2EE; box-shadow: 1px 1px 3px 2px #F6E2EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6E2EE; -webkit-box-shadow: 1px 1px 3px 2px #F6E2EE; box-shadow:1px 1px 3px 2px #F6E2EE;">
Div content here</div>
This text has color #F6E2EE on black background.
This text has color #F6E2EE on white background.
This text has black color on #F6E2EE background.
This text has white color on #F6E2EE background.