HEX: #F99EBB
RGB: (249,158,187)
#F99EBB contains mainly red color. Web safe color of #F99EBB is #FF99CC (or #F9C).
#F99EBB color RGB value is (249,158,187).
RGB: (249,158,187) (98%,62%,73%)
R 249 of 255 = 98%
G 158 of 255 = 62%
B 187 of 255 = 73%
R + G + B ~ 78%. #F99EBB is quite light color.
R + G + B =
249 + 158 + 187 = 594 (100%)
R 249 of 594 ~ 41.92%
G 158 of 594 ~ 26.6%
B 187 of 594 ~ 31.48%
#F99EBB color CMYK value is (0,37,25,2).
CMYK: (0,37,25,2) C0M37Y25K2 (0%,37%,25%,2%) (0.00/0.37/0.25/0.02)
F9 | 9E | BB | |
---|---|---|---|
RGB | 249 | 158 | 187 |
HSL | 341° | 88.35% | 79.80% |
HSB/HSV | 341° | 36.55% | 97.65% |
CMYK | 0.00% | 36.55% | 24.90% |
2.35% |
HEX | F9 | 9E | BB |
Decimal | 249 | 158 | 187 |
Binary | 11111001 | 10011110 | 10111011 |
Octal | 371 | 236 | 273 |
Examples of css and html codes for elements with #F99EBB color. Also use rgb(249,158,187) instead hex code.
.myTextColor { color: #F99EBB; }
<p style="color:#F99EBB">This sample text font color is #F99EBB.</p>
This text font color is #F99EBB.
.myBgColor { background-color: #F99EBB; }
<div style="background-color:#F99EBB">Inner text</div>
This div background color is #F99EBB.
.myBorderColor { border: 1px solid #F99EBB; }
<div style="border:3px solid #F99EBB">Div</div>
This div border color is #F99EBB.
.myOpacity80 { color: #F99EBB; opacity: 0.8; }
<p style="color:#F99EBB;opacity:0.8;">80%</p>
Text with #F99EBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F99EBB;}
<p style="text-shadow: 3px 3px 1px #F99EBB">Text here.</p>
This text has shadow with #F99EBB color.
.textShadow {text-shadow: 3px 3px 1px #F99EBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F99EBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F99EBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F99EBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F99EBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F99EBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F99EBB; -webkit-box-shadow: 1px 1px 3px 2px #F99EBB; box-shadow: 1px 1px 3px 2px #F99EBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F99EBB; -webkit-box-shadow: 1px 1px 3px 2px #F99EBB; box-shadow:1px 1px 3px 2px #F99EBB;">
Div content here</div>
This text has color #F99EBB on black background.
This text has color #F99EBB on white background.
This text has black color on #F99EBB background.
This text has white color on #F99EBB background.