HEX: #FFFEE1
RGB: (255,254,225)
#FFFEE1 contains red, green and blue colors in about the same proportion. Web safe color of #FFFEE1 is #FFFFCC (or #FFC).
#FFFEE1 color RGB value is (255,254,225).
RGB: (255,254,225) (100%,100%,88%)
R 255 of 255 = 100%
G 254 of 255 = 100%
B 225 of 255 = 88%
R + G + B ~ 96%. #FFFEE1 is light color.
R + G + B =
255 + 254 + 225 = 734 (100%)
R 255 of 734 ~ 34.74%
G 254 of 734 ~ 34.6%
B 225 of 734 ~ 30.65%
#FFFEE1 color CMYK value is (0,0,12,0).
CMYK: (0,0,12,0) C0M0Y12K0 (0%,0%,12%,0%) (0.00/0.00/0.12/0.00)
FF | FE | E1 | |
---|---|---|---|
RGB | 255 | 254 | 225 |
HSL | 58° | 100.00% | 94.12% |
HSB/HSV | 58° | 11.76% | 100.00% |
CMYK | 0.00% | 0.39% | 11.76% |
0.00% |
HEX | FF | FE | E1 |
Decimal | 255 | 254 | 225 |
Binary | 11111111 | 11111110 | 11100001 |
Octal | 377 | 376 | 341 |
Examples of css and html codes for elements with #FFFEE1 color. Also use rgb(255,254,225) instead hex code.
.myTextColor { color: #FFFEE1; }
<p style="color:#FFFEE1">This sample text font color is #FFFEE1.</p>
This text font color is #FFFEE1.
.myBgColor { background-color: #FFFEE1; }
<div style="background-color:#FFFEE1">Inner text</div>
This div background color is #FFFEE1.
.myBorderColor { border: 1px solid #FFFEE1; }
<div style="border:3px solid #FFFEE1">Div</div>
This div border color is #FFFEE1.
.myOpacity80 { color: #FFFEE1; opacity: 0.8; }
<p style="color:#FFFEE1;opacity:0.8;">80%</p>
Text with #FFFEE1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFFEE1;}
<p style="text-shadow: 3px 3px 1px #FFFEE1">Text here.</p>
This text has shadow with #FFFEE1 color.
.textShadow {text-shadow: 3px 3px 1px #FFFEE1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFFEE1, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFFEE1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFFEE1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFFEE1, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFFEE1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFFEE1; -webkit-box-shadow: 1px 1px 3px 2px #FFFEE1; box-shadow: 1px 1px 3px 2px #FFFEE1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFFEE1; -webkit-box-shadow: 1px 1px 3px 2px #FFFEE1; box-shadow:1px 1px 3px 2px #FFFEE1;">
Div content here</div>
This text has color #FFFEE1 on black background.
This text has color #FFFEE1 on white background.
This text has black color on #FFFEE1 background.
This text has white color on #FFFEE1 background.