HEX: #FBEBE1
RGB: (251,235,225)
#FBEBE1 contains red, green and blue colors in about the same proportion. Web safe color of #FBEBE1 is #FFFFCC (or #FFC).
#FBEBE1 color RGB value is (251,235,225).
RGB: (251,235,225) (98%,92%,88%)
R 251 of 255 = 98%
G 235 of 255 = 92%
B 225 of 255 = 88%
R + G + B ~ 93%. #FBEBE1 is light color.
R + G + B =
251 + 235 + 225 = 711 (100%)
R 251 of 711 ~ 35.3%
G 235 of 711 ~ 33.05%
B 225 of 711 ~ 31.65%
#FBEBE1 color CMYK value is (0,6,10,2).
CMYK: (0,6,10,2) C0M6Y10K2 (0%,6%,10%,2%) (0.00/0.06/0.10/0.02)
FB | EB | E1 | |
---|---|---|---|
RGB | 251 | 235 | 225 |
HSL | 23° | 76.47% | 93.33% |
HSB/HSV | 23° | 10.36% | 98.43% |
CMYK | 0.00% | 6.37% | 10.36% |
1.57% |
HEX | FB | EB | E1 |
Decimal | 251 | 235 | 225 |
Binary | 11111011 | 11101011 | 11100001 |
Octal | 373 | 353 | 341 |
Examples of css and html codes for elements with #FBEBE1 color. Also use rgb(251,235,225) instead hex code.
.myTextColor { color: #FBEBE1; }
<p style="color:#FBEBE1">This sample text font color is #FBEBE1.</p>
This text font color is #FBEBE1.
.myBgColor { background-color: #FBEBE1; }
<div style="background-color:#FBEBE1">Inner text</div>
This div background color is #FBEBE1.
.myBorderColor { border: 1px solid #FBEBE1; }
<div style="border:3px solid #FBEBE1">Div</div>
This div border color is #FBEBE1.
.myOpacity80 { color: #FBEBE1; opacity: 0.8; }
<p style="color:#FBEBE1;opacity:0.8;">80%</p>
Text with #FBEBE1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FBEBE1;}
<p style="text-shadow: 3px 3px 1px #FBEBE1">Text here.</p>
This text has shadow with #FBEBE1 color.
.textShadow {text-shadow: 3px 3px 1px #FBEBE1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FBEBE1, 5px 5px 20px red">Text here.</p>
This text has shadow with #FBEBE1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FBEBE1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FBEBE1, Direction=45, Strength=4)">Text</p>
This text has shadow with #FBEBE1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FBEBE1; -webkit-box-shadow: 1px 1px 3px 2px #FBEBE1; box-shadow: 1px 1px 3px 2px #FBEBE1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FBEBE1; -webkit-box-shadow: 1px 1px 3px 2px #FBEBE1; box-shadow:1px 1px 3px 2px #FBEBE1;">
Div content here</div>
This text has color #FBEBE1 on black background.
This text has color #FBEBE1 on white background.
This text has black color on #FBEBE1 background.
This text has white color on #FBEBE1 background.