HEX: #F6F1BB
RGB: (246,241,187)
#F6F1BB contains red, green and blue colors in about the same proportion. Web safe color of #F6F1BB is #FFFFCC (or #FFC).
#F6F1BB color RGB value is (246,241,187).
RGB: (246,241,187) (96%,95%,73%)
R 246 of 255 = 96%
G 241 of 255 = 95%
B 187 of 255 = 73%
R + G + B ~ 88%. #F6F1BB is light color.
R + G + B =
246 + 241 + 187 = 674 (100%)
R 246 of 674 ~ 36.5%
G 241 of 674 ~ 35.76%
B 187 of 674 ~ 27.74%
#F6F1BB color CMYK value is (0,2,24,4).
CMYK: (0,2,24,4) C0M2Y24K4 (0%,2%,24%,4%) (0.00/0.02/0.24/0.04)
F6 | F1 | BB | |
---|---|---|---|
RGB | 246 | 241 | 187 |
HSL | 55° | 76.62% | 84.90% |
HSB/HSV | 55° | 23.98% | 96.47% |
CMYK | 0.00% | 2.03% | 23.98% |
3.53% |
HEX | F6 | F1 | BB |
Decimal | 246 | 241 | 187 |
Binary | 11110110 | 11110001 | 10111011 |
Octal | 366 | 361 | 273 |
Examples of css and html codes for elements with #F6F1BB color. Also use rgb(246,241,187) instead hex code.
.myTextColor { color: #F6F1BB; }
<p style="color:#F6F1BB">This sample text font color is #F6F1BB.</p>
This text font color is #F6F1BB.
.myBgColor { background-color: #F6F1BB; }
<div style="background-color:#F6F1BB">Inner text</div>
This div background color is #F6F1BB.
.myBorderColor { border: 1px solid #F6F1BB; }
<div style="border:3px solid #F6F1BB">Div</div>
This div border color is #F6F1BB.
.myOpacity80 { color: #F6F1BB; opacity: 0.8; }
<p style="color:#F6F1BB;opacity:0.8;">80%</p>
Text with #F6F1BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6F1BB;}
<p style="text-shadow: 3px 3px 1px #F6F1BB">Text here.</p>
This text has shadow with #F6F1BB color.
.textShadow {text-shadow: 3px 3px 1px #F6F1BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6F1BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6F1BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6F1BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6F1BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6F1BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6F1BB; -webkit-box-shadow: 1px 1px 3px 2px #F6F1BB; box-shadow: 1px 1px 3px 2px #F6F1BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6F1BB; -webkit-box-shadow: 1px 1px 3px 2px #F6F1BB; box-shadow:1px 1px 3px 2px #F6F1BB;">
Div content here</div>
This text has color #F6F1BB on black background.
This text has color #F6F1BB on white background.
This text has black color on #F6F1BB background.
This text has white color on #F6F1BB background.