HEX: #F9BBED
RGB: (249,187,237)
#F9BBED contains mainly red and blue colors. Web safe color of #F9BBED is #FFCCFF (or #FCF).
#F9BBED color RGB value is (249,187,237).
RGB: (249,187,237) (98%,73%,93%)
R 249 of 255 = 98%
G 187 of 255 = 73%
B 237 of 255 = 93%
R + G + B ~ 88%. #F9BBED is light color.
R + G + B =
249 + 187 + 237 = 673 (100%)
R 249 of 673 ~ 37%
G 187 of 673 ~ 27.79%
B 237 of 673 ~ 35.22%
#F9BBED color CMYK value is (0,25,5,2).
CMYK: (0,25,5,2) C0M25Y5K2 (0%,25%,5%,2%) (0.00/0.25/0.05/0.02)
F9 | BB | ED | |
---|---|---|---|
RGB | 249 | 187 | 237 |
HSL | 312° | 83.78% | 85.49% |
HSB/HSV | 312° | 24.90% | 97.65% |
CMYK | 0.00% | 24.90% | 4.82% |
2.35% |
HEX | F9 | BB | ED |
Decimal | 249 | 187 | 237 |
Binary | 11111001 | 10111011 | 11101101 |
Octal | 371 | 273 | 355 |
Examples of css and html codes for elements with #F9BBED color. Also use rgb(249,187,237) instead hex code.
.myTextColor { color: #F9BBED; }
<p style="color:#F9BBED">This sample text font color is #F9BBED.</p>
This text font color is #F9BBED.
.myBgColor { background-color: #F9BBED; }
<div style="background-color:#F9BBED">Inner text</div>
This div background color is #F9BBED.
.myBorderColor { border: 1px solid #F9BBED; }
<div style="border:3px solid #F9BBED">Div</div>
This div border color is #F9BBED.
.myOpacity80 { color: #F9BBED; opacity: 0.8; }
<p style="color:#F9BBED;opacity:0.8;">80%</p>
Text with #F9BBED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9BBED;}
<p style="text-shadow: 3px 3px 1px #F9BBED">Text here.</p>
This text has shadow with #F9BBED color.
.textShadow {text-shadow: 3px 3px 1px #F9BBED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9BBED, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9BBED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9BBED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9BBED, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9BBED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9BBED; -webkit-box-shadow: 1px 1px 3px 2px #F9BBED; box-shadow: 1px 1px 3px 2px #F9BBED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9BBED; -webkit-box-shadow: 1px 1px 3px 2px #F9BBED; box-shadow:1px 1px 3px 2px #F9BBED;">
Div content here</div>
This text has color #F9BBED on black background.
This text has color #F9BBED on white background.
This text has black color on #F9BBED background.
This text has white color on #F9BBED background.