HEX: #FBE6FE
RGB: (251,230,254)
#FBE6FE contains red, green and blue colors in about the same proportion. Web safe color of #FBE6FE is #FFCCFF (or #FCF).
#FBE6FE color RGB value is (251,230,254).
RGB: (251,230,254) (98%,90%,100%)
R 251 of 255 = 98%
G 230 of 255 = 90%
B 254 of 255 = 100%
R + G + B ~ 96%. #FBE6FE is light color.
R + G + B =
251 + 230 + 254 = 735 (100%)
R 251 of 735 ~ 34.15%
G 230 of 735 ~ 31.29%
B 254 of 735 ~ 34.56%
#FBE6FE color CMYK value is (1,9,0,0).
CMYK: (1,9,0,0) C1M9Y0K0 (1%,9%,0%,0%) (0.01/0.09/0.00/0.00)
FB | E6 | FE | |
---|---|---|---|
RGB | 251 | 230 | 254 |
HSL | 293° | 92.31% | 94.90% |
HSB/HSV | 293° | 9.45% | 99.61% |
CMYK | 1.18% | 9.45% | 0.00% |
0.39% |
HEX | FB | E6 | FE |
Decimal | 251 | 230 | 254 |
Binary | 11111011 | 11100110 | 11111110 |
Octal | 373 | 346 | 376 |
Examples of css and html codes for elements with #FBE6FE color. Also use rgb(251,230,254) instead hex code.
.myTextColor { color: #FBE6FE; }
<p style="color:#FBE6FE">This sample text font color is #FBE6FE.</p>
This text font color is #FBE6FE.
.myBgColor { background-color: #FBE6FE; }
<div style="background-color:#FBE6FE">Inner text</div>
This div background color is #FBE6FE.
.myBorderColor { border: 1px solid #FBE6FE; }
<div style="border:3px solid #FBE6FE">Div</div>
This div border color is #FBE6FE.
.myOpacity80 { color: #FBE6FE; opacity: 0.8; }
<p style="color:#FBE6FE;opacity:0.8;">80%</p>
Text with #FBE6FE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FBE6FE;}
<p style="text-shadow: 3px 3px 1px #FBE6FE">Text here.</p>
This text has shadow with #FBE6FE color.
.textShadow {text-shadow: 3px 3px 1px #FBE6FE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FBE6FE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FBE6FE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FBE6FE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FBE6FE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FBE6FE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FBE6FE; -webkit-box-shadow: 1px 1px 3px 2px #FBE6FE; box-shadow: 1px 1px 3px 2px #FBE6FE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FBE6FE; -webkit-box-shadow: 1px 1px 3px 2px #FBE6FE; box-shadow:1px 1px 3px 2px #FBE6FE;">
Div content here</div>
This text has color #FBE6FE on black background.
This text has color #FBE6FE on white background.
This text has black color on #FBE6FE background.
This text has white color on #FBE6FE background.