HEX: #F1EEFA
RGB: (241,238,250)
#F1EEFA contains red, green and blue colors in about the same proportion. Web safe color of #F1EEFA is #FFFFFF (or #FFF).
#F1EEFA color RGB value is (241,238,250).
RGB: (241,238,250) (95%,93%,98%)
R 241 of 255 = 95%
G 238 of 255 = 93%
B 250 of 255 = 98%
R + G + B ~ 95%. #F1EEFA is light color.
R + G + B =
241 + 238 + 250 = 729 (100%)
R 241 of 729 ~ 33.06%
G 238 of 729 ~ 32.65%
B 250 of 729 ~ 34.29%
#F1EEFA color CMYK value is (4,5,0,2).
CMYK: (4,5,0,2) C4M5Y0K2 (4%,5%,0%,2%) (0.04/0.05/0.00/0.02)
F1 | EE | FA | |
---|---|---|---|
RGB | 241 | 238 | 250 |
HSL | 255° | 54.55% | 95.69% |
HSB/HSV | 255° | 4.80% | 98.04% |
CMYK | 3.60% | 4.80% | 0.00% |
1.96% |
HEX | F1 | EE | FA |
Decimal | 241 | 238 | 250 |
Binary | 11110001 | 11101110 | 11111010 |
Octal | 361 | 356 | 372 |
Examples of css and html codes for elements with #F1EEFA color. Also use rgb(241,238,250) instead hex code.
.myTextColor { color: #F1EEFA; }
<p style="color:#F1EEFA">This sample text font color is #F1EEFA.</p>
This text font color is #F1EEFA.
.myBgColor { background-color: #F1EEFA; }
<div style="background-color:#F1EEFA">Inner text</div>
This div background color is #F1EEFA.
.myBorderColor { border: 1px solid #F1EEFA; }
<div style="border:3px solid #F1EEFA">Div</div>
This div border color is #F1EEFA.
.myOpacity80 { color: #F1EEFA; opacity: 0.8; }
<p style="color:#F1EEFA;opacity:0.8;">80%</p>
Text with #F1EEFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F1EEFA;}
<p style="text-shadow: 3px 3px 1px #F1EEFA">Text here.</p>
This text has shadow with #F1EEFA color.
.textShadow {text-shadow: 3px 3px 1px #F1EEFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F1EEFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F1EEFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F1EEFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F1EEFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F1EEFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F1EEFA; -webkit-box-shadow: 1px 1px 3px 2px #F1EEFA; box-shadow: 1px 1px 3px 2px #F1EEFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F1EEFA; -webkit-box-shadow: 1px 1px 3px 2px #F1EEFA; box-shadow:1px 1px 3px 2px #F1EEFA;">
Div content here</div>
This text has color #F1EEFA on black background.
This text has color #F1EEFA on white background.
This text has black color on #F1EEFA background.
This text has white color on #F1EEFA background.