HEX: #F2EBFA
RGB: (242,235,250)
#F2EBFA contains red, green and blue colors in about the same proportion. Web safe color of #F2EBFA is #FFFFFF (or #FFF).
#F2EBFA color RGB value is (242,235,250).
RGB: (242,235,250) (95%,92%,98%)
R 242 of 255 = 95%
G 235 of 255 = 92%
B 250 of 255 = 98%
R + G + B ~ 95%. #F2EBFA is light color.
R + G + B =
242 + 235 + 250 = 727 (100%)
R 242 of 727 ~ 33.29%
G 235 of 727 ~ 32.32%
B 250 of 727 ~ 34.39%
#F2EBFA color CMYK value is (3,6,0,2).
CMYK: (3,6,0,2) C3M6Y0K2 (3%,6%,0%,2%) (0.03/0.06/0.00/0.02)
F2 | EB | FA | |
---|---|---|---|
RGB | 242 | 235 | 250 |
HSL | 268° | 60.00% | 95.10% |
HSB/HSV | 268° | 6.00% | 98.04% |
CMYK | 3.20% | 6.00% | 0.00% |
1.96% |
HEX | F2 | EB | FA |
Decimal | 242 | 235 | 250 |
Binary | 11110010 | 11101011 | 11111010 |
Octal | 362 | 353 | 372 |
Examples of css and html codes for elements with #F2EBFA color. Also use rgb(242,235,250) instead hex code.
.myTextColor { color: #F2EBFA; }
<p style="color:#F2EBFA">This sample text font color is #F2EBFA.</p>
This text font color is #F2EBFA.
.myBgColor { background-color: #F2EBFA; }
<div style="background-color:#F2EBFA">Inner text</div>
This div background color is #F2EBFA.
.myBorderColor { border: 1px solid #F2EBFA; }
<div style="border:3px solid #F2EBFA">Div</div>
This div border color is #F2EBFA.
.myOpacity80 { color: #F2EBFA; opacity: 0.8; }
<p style="color:#F2EBFA;opacity:0.8;">80%</p>
Text with #F2EBFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2EBFA;}
<p style="text-shadow: 3px 3px 1px #F2EBFA">Text here.</p>
This text has shadow with #F2EBFA color.
.textShadow {text-shadow: 3px 3px 1px #F2EBFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2EBFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2EBFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2EBFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2EBFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2EBFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2EBFA; -webkit-box-shadow: 1px 1px 3px 2px #F2EBFA; box-shadow: 1px 1px 3px 2px #F2EBFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2EBFA; -webkit-box-shadow: 1px 1px 3px 2px #F2EBFA; box-shadow:1px 1px 3px 2px #F2EBFA;">
Div content here</div>
This text has color #F2EBFA on black background.
This text has color #F2EBFA on white background.
This text has black color on #F2EBFA background.
This text has white color on #F2EBFA background.