HEX: #FBE2BC
RGB: (251,226,188)
#FBE2BC contains mainly red and green colors. Web safe color of #FBE2BC is #FFCCCC (or #FCC).
#FBE2BC color RGB value is (251,226,188).
RGB: (251,226,188) (98%,89%,74%)
R 251 of 255 = 98%
G 226 of 255 = 89%
B 188 of 255 = 74%
R + G + B ~ 87%. #FBE2BC is light color.
R + G + B =
251 + 226 + 188 = 665 (100%)
R 251 of 665 ~ 37.74%
G 226 of 665 ~ 33.98%
B 188 of 665 ~ 28.27%
#FBE2BC color CMYK value is (0,10,25,2).
CMYK: (0,10,25,2) C0M10Y25K2 (0%,10%,25%,2%) (0.00/0.10/0.25/0.02)
FB | E2 | BC | |
---|---|---|---|
RGB | 251 | 226 | 188 |
HSL | 36° | 88.73% | 86.08% |
HSB/HSV | 36° | 25.10% | 98.43% |
CMYK | 0.00% | 9.96% | 25.10% |
1.57% |
HEX | FB | E2 | BC |
Decimal | 251 | 226 | 188 |
Binary | 11111011 | 11100010 | 10111100 |
Octal | 373 | 342 | 274 |
Examples of css and html codes for elements with #FBE2BC color. Also use rgb(251,226,188) instead hex code.
.myTextColor { color: #FBE2BC; }
<p style="color:#FBE2BC">This sample text font color is #FBE2BC.</p>
This text font color is #FBE2BC.
.myBgColor { background-color: #FBE2BC; }
<div style="background-color:#FBE2BC">Inner text</div>
This div background color is #FBE2BC.
.myBorderColor { border: 1px solid #FBE2BC; }
<div style="border:3px solid #FBE2BC">Div</div>
This div border color is #FBE2BC.
.myOpacity80 { color: #FBE2BC; opacity: 0.8; }
<p style="color:#FBE2BC;opacity:0.8;">80%</p>
Text with #FBE2BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FBE2BC;}
<p style="text-shadow: 3px 3px 1px #FBE2BC">Text here.</p>
This text has shadow with #FBE2BC color.
.textShadow {text-shadow: 3px 3px 1px #FBE2BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FBE2BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FBE2BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FBE2BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FBE2BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FBE2BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FBE2BC; -webkit-box-shadow: 1px 1px 3px 2px #FBE2BC; box-shadow: 1px 1px 3px 2px #FBE2BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FBE2BC; -webkit-box-shadow: 1px 1px 3px 2px #FBE2BC; box-shadow:1px 1px 3px 2px #FBE2BC;">
Div content here</div>
This text has color #FBE2BC on black background.
This text has color #FBE2BC on white background.
This text has black color on #FBE2BC background.
This text has white color on #FBE2BC background.