HEX: #F6DFDA
RGB: (246,223,218)
#F6DFDA contains red, green and blue colors in about the same proportion. Web safe color of #F6DFDA is #FFCCCC (or #FCC).
#F6DFDA color RGB value is (246,223,218).
RGB: (246,223,218) (96%,87%,85%)
R 246 of 255 = 96%
G 223 of 255 = 87%
B 218 of 255 = 85%
R + G + B ~ 89%. #F6DFDA is light color.
R + G + B =
246 + 223 + 218 = 687 (100%)
R 246 of 687 ~ 35.81%
G 223 of 687 ~ 32.46%
B 218 of 687 ~ 31.73%
#F6DFDA color CMYK value is (0,9,11,4).
CMYK: (0,9,11,4) C0M9Y11K4 (0%,9%,11%,4%) (0.00/0.09/0.11/0.04)
F6 | DF | DA | |
---|---|---|---|
RGB | 246 | 223 | 218 |
HSL | 11° | 60.87% | 90.98% |
HSB/HSV | 11° | 11.38% | 96.47% |
CMYK | 0.00% | 9.35% | 11.38% |
3.53% |
HEX | F6 | DF | DA |
Decimal | 246 | 223 | 218 |
Binary | 11110110 | 11011111 | 11011010 |
Octal | 366 | 337 | 332 |
Examples of css and html codes for elements with #F6DFDA color. Also use rgb(246,223,218) instead hex code.
.myTextColor { color: #F6DFDA; }
<p style="color:#F6DFDA">This sample text font color is #F6DFDA.</p>
This text font color is #F6DFDA.
.myBgColor { background-color: #F6DFDA; }
<div style="background-color:#F6DFDA">Inner text</div>
This div background color is #F6DFDA.
.myBorderColor { border: 1px solid #F6DFDA; }
<div style="border:3px solid #F6DFDA">Div</div>
This div border color is #F6DFDA.
.myOpacity80 { color: #F6DFDA; opacity: 0.8; }
<p style="color:#F6DFDA;opacity:0.8;">80%</p>
Text with #F6DFDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6DFDA;}
<p style="text-shadow: 3px 3px 1px #F6DFDA">Text here.</p>
This text has shadow with #F6DFDA color.
.textShadow {text-shadow: 3px 3px 1px #F6DFDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6DFDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6DFDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6DFDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6DFDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6DFDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6DFDA; -webkit-box-shadow: 1px 1px 3px 2px #F6DFDA; box-shadow: 1px 1px 3px 2px #F6DFDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6DFDA; -webkit-box-shadow: 1px 1px 3px 2px #F6DFDA; box-shadow:1px 1px 3px 2px #F6DFDA;">
Div content here</div>
This text has color #F6DFDA on black background.
This text has color #F6DFDA on white background.
This text has black color on #F6DFDA background.
This text has white color on #F6DFDA background.