HEX: #FBF5ED
RGB: (251,245,237)
#FBF5ED contains red, green and blue colors in about the same proportion. Web safe color of #FBF5ED is #FFFFFF (or #FFF).
#FBF5ED color RGB value is (251,245,237).
RGB: (251,245,237) (98%,96%,93%)
R 251 of 255 = 98%
G 245 of 255 = 96%
B 237 of 255 = 93%
R + G + B ~ 96%. #FBF5ED is light color.
R + G + B =
251 + 245 + 237 = 733 (100%)
R 251 of 733 ~ 34.24%
G 245 of 733 ~ 33.42%
B 237 of 733 ~ 32.33%
#FBF5ED color CMYK value is (0,2,6,2).
CMYK: (0,2,6,2) C0M2Y6K2 (0%,2%,6%,2%) (0.00/0.02/0.06/0.02)
FB | F5 | ED | |
---|---|---|---|
RGB | 251 | 245 | 237 |
HSL | 34° | 63.64% | 95.69% |
HSB/HSV | 34° | 5.58% | 98.43% |
CMYK | 0.00% | 2.39% | 5.58% |
1.57% |
HEX | FB | F5 | ED |
Decimal | 251 | 245 | 237 |
Binary | 11111011 | 11110101 | 11101101 |
Octal | 373 | 365 | 355 |
Examples of css and html codes for elements with #FBF5ED color. Also use rgb(251,245,237) instead hex code.
.myTextColor { color: #FBF5ED; }
<p style="color:#FBF5ED">This sample text font color is #FBF5ED.</p>
This text font color is #FBF5ED.
.myBgColor { background-color: #FBF5ED; }
<div style="background-color:#FBF5ED">Inner text</div>
This div background color is #FBF5ED.
.myBorderColor { border: 1px solid #FBF5ED; }
<div style="border:3px solid #FBF5ED">Div</div>
This div border color is #FBF5ED.
.myOpacity80 { color: #FBF5ED; opacity: 0.8; }
<p style="color:#FBF5ED;opacity:0.8;">80%</p>
Text with #FBF5ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FBF5ED;}
<p style="text-shadow: 3px 3px 1px #FBF5ED">Text here.</p>
This text has shadow with #FBF5ED color.
.textShadow {text-shadow: 3px 3px 1px #FBF5ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FBF5ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FBF5ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FBF5ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FBF5ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FBF5ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FBF5ED; -webkit-box-shadow: 1px 1px 3px 2px #FBF5ED; box-shadow: 1px 1px 3px 2px #FBF5ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FBF5ED; -webkit-box-shadow: 1px 1px 3px 2px #FBF5ED; box-shadow:1px 1px 3px 2px #FBF5ED;">
Div content here</div>
This text has color #FBF5ED on black background.
This text has color #FBF5ED on white background.
This text has black color on #FBF5ED background.
This text has white color on #FBF5ED background.