HEX: #F9E4BB
RGB: (249,228,187)
#F9E4BB contains mainly red and green colors. Web safe color of #F9E4BB is #FFCCCC (or #FCC).
#F9E4BB color RGB value is (249,228,187).
RGB: (249,228,187) (98%,89%,73%)
R 249 of 255 = 98%
G 228 of 255 = 89%
B 187 of 255 = 73%
R + G + B ~ 87%. #F9E4BB is light color.
R + G + B =
249 + 228 + 187 = 664 (100%)
R 249 of 664 ~ 37.5%
G 228 of 664 ~ 34.34%
B 187 of 664 ~ 28.16%
#F9E4BB color CMYK value is (0,8,25,2).
CMYK: (0,8,25,2) C0M8Y25K2 (0%,8%,25%,2%) (0.00/0.08/0.25/0.02)
F9 | E4 | BB | |
---|---|---|---|
RGB | 249 | 228 | 187 |
HSL | 40° | 83.78% | 85.49% |
HSB/HSV | 40° | 24.90% | 97.65% |
CMYK | 0.00% | 8.43% | 24.90% |
2.35% |
HEX | F9 | E4 | BB |
Decimal | 249 | 228 | 187 |
Binary | 11111001 | 11100100 | 10111011 |
Octal | 371 | 344 | 273 |
Examples of css and html codes for elements with #F9E4BB color. Also use rgb(249,228,187) instead hex code.
.myTextColor { color: #F9E4BB; }
<p style="color:#F9E4BB">This sample text font color is #F9E4BB.</p>
This text font color is #F9E4BB.
.myBgColor { background-color: #F9E4BB; }
<div style="background-color:#F9E4BB">Inner text</div>
This div background color is #F9E4BB.
.myBorderColor { border: 1px solid #F9E4BB; }
<div style="border:3px solid #F9E4BB">Div</div>
This div border color is #F9E4BB.
.myOpacity80 { color: #F9E4BB; opacity: 0.8; }
<p style="color:#F9E4BB;opacity:0.8;">80%</p>
Text with #F9E4BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9E4BB;}
<p style="text-shadow: 3px 3px 1px #F9E4BB">Text here.</p>
This text has shadow with #F9E4BB color.
.textShadow {text-shadow: 3px 3px 1px #F9E4BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9E4BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9E4BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9E4BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9E4BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9E4BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9E4BB; -webkit-box-shadow: 1px 1px 3px 2px #F9E4BB; box-shadow: 1px 1px 3px 2px #F9E4BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9E4BB; -webkit-box-shadow: 1px 1px 3px 2px #F9E4BB; box-shadow:1px 1px 3px 2px #F9E4BB;">
Div content here</div>
This text has color #F9E4BB on black background.
This text has color #F9E4BB on white background.
This text has black color on #F9E4BB background.
This text has white color on #F9E4BB background.