HEX: #F6EADF
RGB: (246,234,223)
#F6EADF contains red, green and blue colors in about the same proportion. Web safe color of #F6EADF is #FFFFCC (or #FFC).
#F6EADF color RGB value is (246,234,223).
RGB: (246,234,223) (96%,92%,87%)
R 246 of 255 = 96%
G 234 of 255 = 92%
B 223 of 255 = 87%
R + G + B ~ 92%. #F6EADF is light color.
R + G + B =
246 + 234 + 223 = 703 (100%)
R 246 of 703 ~ 34.99%
G 234 of 703 ~ 33.29%
B 223 of 703 ~ 31.72%
#F6EADF color CMYK value is (0,5,9,4).
CMYK: (0,5,9,4) C0M5Y9K4 (0%,5%,9%,4%) (0.00/0.05/0.09/0.04)
F6 | EA | DF | |
---|---|---|---|
RGB | 246 | 234 | 223 |
HSL | 29° | 56.10% | 91.96% |
HSB/HSV | 29° | 9.35% | 96.47% |
CMYK | 0.00% | 4.88% | 9.35% |
3.53% |
HEX | F6 | EA | DF |
Decimal | 246 | 234 | 223 |
Binary | 11110110 | 11101010 | 11011111 |
Octal | 366 | 352 | 337 |
Examples of css and html codes for elements with #F6EADF color. Also use rgb(246,234,223) instead hex code.
.myTextColor { color: #F6EADF; }
<p style="color:#F6EADF">This sample text font color is #F6EADF.</p>
This text font color is #F6EADF.
.myBgColor { background-color: #F6EADF; }
<div style="background-color:#F6EADF">Inner text</div>
This div background color is #F6EADF.
.myBorderColor { border: 1px solid #F6EADF; }
<div style="border:3px solid #F6EADF">Div</div>
This div border color is #F6EADF.
.myOpacity80 { color: #F6EADF; opacity: 0.8; }
<p style="color:#F6EADF;opacity:0.8;">80%</p>
Text with #F6EADF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6EADF;}
<p style="text-shadow: 3px 3px 1px #F6EADF">Text here.</p>
This text has shadow with #F6EADF color.
.textShadow {text-shadow: 3px 3px 1px #F6EADF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6EADF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6EADF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6EADF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6EADF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6EADF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6EADF; -webkit-box-shadow: 1px 1px 3px 2px #F6EADF; box-shadow: 1px 1px 3px 2px #F6EADF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6EADF; -webkit-box-shadow: 1px 1px 3px 2px #F6EADF; box-shadow:1px 1px 3px 2px #F6EADF;">
Div content here</div>
This text has color #F6EADF on black background.
This text has color #F6EADF on white background.
This text has black color on #F6EADF background.
This text has white color on #F6EADF background.