HEX: #F1F4BC
RGB: (241,244,188)
#F1F4BC contains red, green and blue colors in about the same proportion. Web safe color of #F1F4BC is #FFFFCC (or #FFC).
#F1F4BC color RGB value is (241,244,188).
RGB: (241,244,188) (95%,96%,74%)
R 241 of 255 = 95%
G 244 of 255 = 96%
B 188 of 255 = 74%
R + G + B ~ 88%. #F1F4BC is light color.
R + G + B =
241 + 244 + 188 = 673 (100%)
R 241 of 673 ~ 35.81%
G 244 of 673 ~ 36.26%
B 188 of 673 ~ 27.93%
#F1F4BC color CMYK value is (1,0,23,4).
CMYK: (1,0,23,4) C1M0Y23K4 (1%,0%,23%,4%) (0.01/0.00/0.23/0.04)
F1 | F4 | BC | |
---|---|---|---|
RGB | 241 | 244 | 188 |
HSL | 63° | 71.79% | 84.71% |
HSB/HSV | 63° | 22.95% | 95.69% |
CMYK | 1.23% | 0.00% | 22.95% |
4.31% |
HEX | F1 | F4 | BC |
Decimal | 241 | 244 | 188 |
Binary | 11110001 | 11110100 | 10111100 |
Octal | 361 | 364 | 274 |
Examples of css and html codes for elements with #F1F4BC color. Also use rgb(241,244,188) instead hex code.
.myTextColor { color: #F1F4BC; }
<p style="color:#F1F4BC">This sample text font color is #F1F4BC.</p>
This text font color is #F1F4BC.
.myBgColor { background-color: #F1F4BC; }
<div style="background-color:#F1F4BC">Inner text</div>
This div background color is #F1F4BC.
.myBorderColor { border: 1px solid #F1F4BC; }
<div style="border:3px solid #F1F4BC">Div</div>
This div border color is #F1F4BC.
.myOpacity80 { color: #F1F4BC; opacity: 0.8; }
<p style="color:#F1F4BC;opacity:0.8;">80%</p>
Text with #F1F4BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F1F4BC;}
<p style="text-shadow: 3px 3px 1px #F1F4BC">Text here.</p>
This text has shadow with #F1F4BC color.
.textShadow {text-shadow: 3px 3px 1px #F1F4BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F1F4BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F1F4BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F1F4BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F1F4BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F1F4BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F1F4BC; -webkit-box-shadow: 1px 1px 3px 2px #F1F4BC; box-shadow: 1px 1px 3px 2px #F1F4BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F1F4BC; -webkit-box-shadow: 1px 1px 3px 2px #F1F4BC; box-shadow:1px 1px 3px 2px #F1F4BC;">
Div content here</div>
This text has color #F1F4BC on black background.
This text has color #F1F4BC on white background.
This text has black color on #F1F4BC background.
This text has white color on #F1F4BC background.