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