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