HEX: #F6D0FB
RGB: (246,208,251)
#F6D0FB contains red, green and blue colors in about the same proportion. Web safe color of #F6D0FB is #FFCCFF (or #FCF).
#F6D0FB color RGB value is (246,208,251).
RGB: (246,208,251) (96%,82%,98%)
R 246 of 255 = 96%
G 208 of 255 = 82%
B 251 of 255 = 98%
R + G + B ~ 92%. #F6D0FB is light color.
R + G + B =
246 + 208 + 251 = 705 (100%)
R 246 of 705 ~ 34.89%
G 208 of 705 ~ 29.5%
B 251 of 705 ~ 35.6%
#F6D0FB color CMYK value is (2,17,0,2).
CMYK: (2,17,0,2) C2M17Y0K2 (2%,17%,0%,2%) (0.02/0.17/0.00/0.02)
F6 | D0 | FB | |
---|---|---|---|
RGB | 246 | 208 | 251 |
HSL | 293° | 84.31% | 90.00% |
HSB/HSV | 293° | 17.13% | 98.43% |
CMYK | 1.99% | 17.13% | 0.00% |
1.57% |
HEX | F6 | D0 | FB |
Decimal | 246 | 208 | 251 |
Binary | 11110110 | 11010000 | 11111011 |
Octal | 366 | 320 | 373 |
Examples of css and html codes for elements with #F6D0FB color. Also use rgb(246,208,251) instead hex code.
.myTextColor { color: #F6D0FB; }
<p style="color:#F6D0FB">This sample text font color is #F6D0FB.</p>
This text font color is #F6D0FB.
.myBgColor { background-color: #F6D0FB; }
<div style="background-color:#F6D0FB">Inner text</div>
This div background color is #F6D0FB.
.myBorderColor { border: 1px solid #F6D0FB; }
<div style="border:3px solid #F6D0FB">Div</div>
This div border color is #F6D0FB.
.myOpacity80 { color: #F6D0FB; opacity: 0.8; }
<p style="color:#F6D0FB;opacity:0.8;">80%</p>
Text with #F6D0FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6D0FB;}
<p style="text-shadow: 3px 3px 1px #F6D0FB">Text here.</p>
This text has shadow with #F6D0FB color.
.textShadow {text-shadow: 3px 3px 1px #F6D0FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6D0FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6D0FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6D0FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6D0FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6D0FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6D0FB; -webkit-box-shadow: 1px 1px 3px 2px #F6D0FB; box-shadow: 1px 1px 3px 2px #F6D0FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6D0FB; -webkit-box-shadow: 1px 1px 3px 2px #F6D0FB; box-shadow:1px 1px 3px 2px #F6D0FB;">
Div content here</div>
This text has color #F6D0FB on black background.
This text has color #F6D0FB on white background.
This text has black color on #F6D0FB background.
This text has white color on #F6D0FB background.