HEX: #F5EFBB
RGB: (245,239,187)
#F5EFBB contains red, green and blue colors in about the same proportion. Web safe color of #F5EFBB is #FFFFCC (or #FFC).
#F5EFBB color RGB value is (245,239,187).
RGB: (245,239,187) (96%,94%,73%)
R 245 of 255 = 96%
G 239 of 255 = 94%
B 187 of 255 = 73%
R + G + B ~ 88%. #F5EFBB is light color.
R + G + B =
245 + 239 + 187 = 671 (100%)
R 245 of 671 ~ 36.51%
G 239 of 671 ~ 35.62%
B 187 of 671 ~ 27.87%
#F5EFBB 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)
F5 | EF | BB | |
---|---|---|---|
RGB | 245 | 239 | 187 |
HSL | 54° | 74.36% | 84.71% |
HSB/HSV | 54° | 23.67% | 96.08% |
CMYK | 0.00% | 2.45% | 23.67% |
3.92% |
HEX | F5 | EF | BB |
Decimal | 245 | 239 | 187 |
Binary | 11110101 | 11101111 | 10111011 |
Octal | 365 | 357 | 273 |
Examples of css and html codes for elements with #F5EFBB color. Also use rgb(245,239,187) instead hex code.
.myTextColor { color: #F5EFBB; }
<p style="color:#F5EFBB">This sample text font color is #F5EFBB.</p>
This text font color is #F5EFBB.
.myBgColor { background-color: #F5EFBB; }
<div style="background-color:#F5EFBB">Inner text</div>
This div background color is #F5EFBB.
.myBorderColor { border: 1px solid #F5EFBB; }
<div style="border:3px solid #F5EFBB">Div</div>
This div border color is #F5EFBB.
.myOpacity80 { color: #F5EFBB; opacity: 0.8; }
<p style="color:#F5EFBB;opacity:0.8;">80%</p>
Text with #F5EFBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5EFBB;}
<p style="text-shadow: 3px 3px 1px #F5EFBB">Text here.</p>
This text has shadow with #F5EFBB color.
.textShadow {text-shadow: 3px 3px 1px #F5EFBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5EFBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5EFBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5EFBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5EFBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5EFBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5EFBB; -webkit-box-shadow: 1px 1px 3px 2px #F5EFBB; box-shadow: 1px 1px 3px 2px #F5EFBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5EFBB; -webkit-box-shadow: 1px 1px 3px 2px #F5EFBB; box-shadow:1px 1px 3px 2px #F5EFBB;">
Div content here</div>
This text has color #F5EFBB on black background.
This text has color #F5EFBB on white background.
This text has black color on #F5EFBB background.
This text has white color on #F5EFBB background.