HEX: #F9FEEB
RGB: (249,254,235)
#F9FEEB contains red, green and blue colors in about the same proportion. Web safe color of #F9FEEB is #FFFFFF (or #FFF).
#F9FEEB color RGB value is (249,254,235).
RGB: (249,254,235) (98%,100%,92%)
R 249 of 255 = 98%
G 254 of 255 = 100%
B 235 of 255 = 92%
R + G + B ~ 97%. #F9FEEB is light color.
R + G + B =
249 + 254 + 235 = 738 (100%)
R 249 of 738 ~ 33.74%
G 254 of 738 ~ 34.42%
B 235 of 738 ~ 31.84%
#F9FEEB color CMYK value is (2,0,7,0).
CMYK: (2,0,7,0) C2M0Y7K0 (2%,0%,7%,0%) (0.02/0.00/0.07/0.00)
F9 | FE | EB | |
---|---|---|---|
RGB | 249 | 254 | 235 |
HSL | 76° | 90.48% | 95.88% |
HSB/HSV | 76° | 7.48% | 99.61% |
CMYK | 1.97% | 0.00% | 7.48% |
0.39% |
HEX | F9 | FE | EB |
Decimal | 249 | 254 | 235 |
Binary | 11111001 | 11111110 | 11101011 |
Octal | 371 | 376 | 353 |
Examples of css and html codes for elements with #F9FEEB color. Also use rgb(249,254,235) instead hex code.
.myTextColor { color: #F9FEEB; }
<p style="color:#F9FEEB">This sample text font color is #F9FEEB.</p>
This text font color is #F9FEEB.
.myBgColor { background-color: #F9FEEB; }
<div style="background-color:#F9FEEB">Inner text</div>
This div background color is #F9FEEB.
.myBorderColor { border: 1px solid #F9FEEB; }
<div style="border:3px solid #F9FEEB">Div</div>
This div border color is #F9FEEB.
.myOpacity80 { color: #F9FEEB; opacity: 0.8; }
<p style="color:#F9FEEB;opacity:0.8;">80%</p>
Text with #F9FEEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9FEEB;}
<p style="text-shadow: 3px 3px 1px #F9FEEB">Text here.</p>
This text has shadow with #F9FEEB color.
.textShadow {text-shadow: 3px 3px 1px #F9FEEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9FEEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9FEEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9FEEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9FEEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9FEEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9FEEB; -webkit-box-shadow: 1px 1px 3px 2px #F9FEEB; box-shadow: 1px 1px 3px 2px #F9FEEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9FEEB; -webkit-box-shadow: 1px 1px 3px 2px #F9FEEB; box-shadow:1px 1px 3px 2px #F9FEEB;">
Div content here</div>
This text has color #F9FEEB on black background.
This text has color #F9FEEB on white background.
This text has black color on #F9FEEB background.
This text has white color on #F9FEEB background.