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