HEX: #FBF7DB
RGB: (251,247,219)
#FBF7DB contains red, green and blue colors in about the same proportion. Web safe color of #FBF7DB is #FFFFCC (or #FFC).
#FBF7DB color RGB value is (251,247,219).
RGB: (251,247,219) (98%,97%,86%)
R 251 of 255 = 98%
G 247 of 255 = 97%
B 219 of 255 = 86%
R + G + B ~ 94%. #FBF7DB is light color.
R + G + B =
251 + 247 + 219 = 717 (100%)
R 251 of 717 ~ 35.01%
G 247 of 717 ~ 34.45%
B 219 of 717 ~ 30.54%
#FBF7DB color CMYK value is (0,2,13,2).
CMYK: (0,2,13,2) C0M2Y13K2 (0%,2%,13%,2%) (0.00/0.02/0.13/0.02)
FB | F7 | DB | |
---|---|---|---|
RGB | 251 | 247 | 219 |
HSL | 53° | 80.00% | 92.16% |
HSB/HSV | 53° | 12.75% | 98.43% |
CMYK | 0.00% | 1.59% | 12.75% |
1.57% |
HEX | FB | F7 | DB |
Decimal | 251 | 247 | 219 |
Binary | 11111011 | 11110111 | 11011011 |
Octal | 373 | 367 | 333 |
Examples of css and html codes for elements with #FBF7DB color. Also use rgb(251,247,219) instead hex code.
.myTextColor { color: #FBF7DB; }
<p style="color:#FBF7DB">This sample text font color is #FBF7DB.</p>
This text font color is #FBF7DB.
.myBgColor { background-color: #FBF7DB; }
<div style="background-color:#FBF7DB">Inner text</div>
This div background color is #FBF7DB.
.myBorderColor { border: 1px solid #FBF7DB; }
<div style="border:3px solid #FBF7DB">Div</div>
This div border color is #FBF7DB.
.myOpacity80 { color: #FBF7DB; opacity: 0.8; }
<p style="color:#FBF7DB;opacity:0.8;">80%</p>
Text with #FBF7DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FBF7DB;}
<p style="text-shadow: 3px 3px 1px #FBF7DB">Text here.</p>
This text has shadow with #FBF7DB color.
.textShadow {text-shadow: 3px 3px 1px #FBF7DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FBF7DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FBF7DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FBF7DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FBF7DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FBF7DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FBF7DB; -webkit-box-shadow: 1px 1px 3px 2px #FBF7DB; box-shadow: 1px 1px 3px 2px #FBF7DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FBF7DB; -webkit-box-shadow: 1px 1px 3px 2px #FBF7DB; box-shadow:1px 1px 3px 2px #FBF7DB;">
Div content here</div>
This text has color #FBF7DB on black background.
This text has color #FBF7DB on white background.
This text has black color on #FBF7DB background.
This text has white color on #FBF7DB background.