HEX: #FBE0ED
RGB: (251,224,237)
#FBE0ED contains red, green and blue colors in about the same proportion. Web safe color of #FBE0ED is #FFCCFF (or #FCF).
#FBE0ED color RGB value is (251,224,237).
RGB: (251,224,237) (98%,88%,93%)
R 251 of 255 = 98%
G 224 of 255 = 88%
B 237 of 255 = 93%
R + G + B ~ 93%. #FBE0ED is light color.
R + G + B =
251 + 224 + 237 = 712 (100%)
R 251 of 712 ~ 35.25%
G 224 of 712 ~ 31.46%
B 237 of 712 ~ 33.29%
#FBE0ED color CMYK value is (0,11,6,2).
CMYK: (0,11,6,2) C0M11Y6K2 (0%,11%,6%,2%) (0.00/0.11/0.06/0.02)
FB | E0 | ED | |
---|---|---|---|
RGB | 251 | 224 | 237 |
HSL | 331° | 77.14% | 93.14% |
HSB/HSV | 331° | 10.76% | 98.43% |
CMYK | 0.00% | 10.76% | 5.58% |
1.57% |
HEX | FB | E0 | ED |
Decimal | 251 | 224 | 237 |
Binary | 11111011 | 11100000 | 11101101 |
Octal | 373 | 340 | 355 |
Examples of css and html codes for elements with #FBE0ED color. Also use rgb(251,224,237) instead hex code.
.myTextColor { color: #FBE0ED; }
<p style="color:#FBE0ED">This sample text font color is #FBE0ED.</p>
This text font color is #FBE0ED.
.myBgColor { background-color: #FBE0ED; }
<div style="background-color:#FBE0ED">Inner text</div>
This div background color is #FBE0ED.
.myBorderColor { border: 1px solid #FBE0ED; }
<div style="border:3px solid #FBE0ED">Div</div>
This div border color is #FBE0ED.
.myOpacity80 { color: #FBE0ED; opacity: 0.8; }
<p style="color:#FBE0ED;opacity:0.8;">80%</p>
Text with #FBE0ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FBE0ED;}
<p style="text-shadow: 3px 3px 1px #FBE0ED">Text here.</p>
This text has shadow with #FBE0ED color.
.textShadow {text-shadow: 3px 3px 1px #FBE0ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FBE0ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FBE0ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FBE0ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FBE0ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FBE0ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FBE0ED; -webkit-box-shadow: 1px 1px 3px 2px #FBE0ED; box-shadow: 1px 1px 3px 2px #FBE0ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FBE0ED; -webkit-box-shadow: 1px 1px 3px 2px #FBE0ED; box-shadow:1px 1px 3px 2px #FBE0ED;">
Div content here</div>
This text has color #FBE0ED on black background.
This text has color #FBE0ED on white background.
This text has black color on #FBE0ED background.
This text has white color on #FBE0ED background.