HEX: #FEF8BB
RGB: (254,248,187)
#FEF8BB contains mainly red and green colors. Web safe color of #FEF8BB is #FFFFCC (or #FFC).
#FEF8BB color RGB value is (254,248,187).
RGB: (254,248,187) (100%,97%,73%)
R 254 of 255 = 100%
G 248 of 255 = 97%
B 187 of 255 = 73%
R + G + B ~ 90%. #FEF8BB is light color.
R + G + B =
254 + 248 + 187 = 689 (100%)
R 254 of 689 ~ 36.87%
G 248 of 689 ~ 35.99%
B 187 of 689 ~ 27.14%
#FEF8BB color CMYK value is (0,2,26,0).
CMYK: (0,2,26,0) C0M2Y26K0 (0%,2%,26%,0%) (0.00/0.02/0.26/0.00)
FE | F8 | BB | |
---|---|---|---|
RGB | 254 | 248 | 187 |
HSL | 55° | 97.10% | 86.47% |
HSB/HSV | 55° | 26.38% | 99.61% |
CMYK | 0.00% | 2.36% | 26.38% |
0.39% |
HEX | FE | F8 | BB |
Decimal | 254 | 248 | 187 |
Binary | 11111110 | 11111000 | 10111011 |
Octal | 376 | 370 | 273 |
Examples of css and html codes for elements with #FEF8BB color. Also use rgb(254,248,187) instead hex code.
.myTextColor { color: #FEF8BB; }
<p style="color:#FEF8BB">This sample text font color is #FEF8BB.</p>
This text font color is #FEF8BB.
.myBgColor { background-color: #FEF8BB; }
<div style="background-color:#FEF8BB">Inner text</div>
This div background color is #FEF8BB.
.myBorderColor { border: 1px solid #FEF8BB; }
<div style="border:3px solid #FEF8BB">Div</div>
This div border color is #FEF8BB.
.myOpacity80 { color: #FEF8BB; opacity: 0.8; }
<p style="color:#FEF8BB;opacity:0.8;">80%</p>
Text with #FEF8BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEF8BB;}
<p style="text-shadow: 3px 3px 1px #FEF8BB">Text here.</p>
This text has shadow with #FEF8BB color.
.textShadow {text-shadow: 3px 3px 1px #FEF8BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEF8BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEF8BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEF8BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEF8BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEF8BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEF8BB; -webkit-box-shadow: 1px 1px 3px 2px #FEF8BB; box-shadow: 1px 1px 3px 2px #FEF8BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEF8BB; -webkit-box-shadow: 1px 1px 3px 2px #FEF8BB; box-shadow:1px 1px 3px 2px #FEF8BB;">
Div content here</div>
This text has color #FEF8BB on black background.
This text has color #FEF8BB on white background.
This text has black color on #FEF8BB background.
This text has white color on #FEF8BB background.