HEX: #FEF8EB
RGB: (254,248,235)
#FEF8EB contains red, green and blue colors in about the same proportion. Web safe color of #FEF8EB is #FFFFFF (or #FFF).
#FEF8EB color RGB value is (254,248,235).
RGB: (254,248,235) (100%,97%,92%)
R 254 of 255 = 100%
G 248 of 255 = 97%
B 235 of 255 = 92%
R + G + B ~ 96%. #FEF8EB is light color.
R + G + B =
254 + 248 + 235 = 737 (100%)
R 254 of 737 ~ 34.46%
G 248 of 737 ~ 33.65%
B 235 of 737 ~ 31.89%
#FEF8EB color CMYK value is (0,2,7,0).
CMYK: (0,2,7,0) C0M2Y7K0 (0%,2%,7%,0%) (0.00/0.02/0.07/0.00)
FE | F8 | EB | |
---|---|---|---|
RGB | 254 | 248 | 235 |
HSL | 41° | 90.48% | 95.88% |
HSB/HSV | 41° | 7.48% | 99.61% |
CMYK | 0.00% | 2.36% | 7.48% |
0.39% |
HEX | FE | F8 | EB |
Decimal | 254 | 248 | 235 |
Binary | 11111110 | 11111000 | 11101011 |
Octal | 376 | 370 | 353 |
Examples of css and html codes for elements with #FEF8EB color. Also use rgb(254,248,235) instead hex code.
.myTextColor { color: #FEF8EB; }
<p style="color:#FEF8EB">This sample text font color is #FEF8EB.</p>
This text font color is #FEF8EB.
.myBgColor { background-color: #FEF8EB; }
<div style="background-color:#FEF8EB">Inner text</div>
This div background color is #FEF8EB.
.myBorderColor { border: 1px solid #FEF8EB; }
<div style="border:3px solid #FEF8EB">Div</div>
This div border color is #FEF8EB.
.myOpacity80 { color: #FEF8EB; opacity: 0.8; }
<p style="color:#FEF8EB;opacity:0.8;">80%</p>
Text with #FEF8EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEF8EB;}
<p style="text-shadow: 3px 3px 1px #FEF8EB">Text here.</p>
This text has shadow with #FEF8EB color.
.textShadow {text-shadow: 3px 3px 1px #FEF8EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEF8EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEF8EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEF8EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEF8EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEF8EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEF8EB; -webkit-box-shadow: 1px 1px 3px 2px #FEF8EB; box-shadow: 1px 1px 3px 2px #FEF8EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEF8EB; -webkit-box-shadow: 1px 1px 3px 2px #FEF8EB; box-shadow:1px 1px 3px 2px #FEF8EB;">
Div content here</div>
This text has color #FEF8EB on black background.
This text has color #FEF8EB on white background.
This text has black color on #FEF8EB background.
This text has white color on #FEF8EB background.