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