HEX: #F5EAFA
RGB: (245,234,250)
#F5EAFA contains red, green and blue colors in about the same proportion. Web safe color of #F5EAFA is #FFFFFF (or #FFF).
#F5EAFA color RGB value is (245,234,250).
RGB: (245,234,250) (96%,92%,98%)
R 245 of 255 = 96%
G 234 of 255 = 92%
B 250 of 255 = 98%
R + G + B ~ 95%. #F5EAFA is light color.
R + G + B =
245 + 234 + 250 = 729 (100%)
R 245 of 729 ~ 33.61%
G 234 of 729 ~ 32.1%
B 250 of 729 ~ 34.29%
#F5EAFA color CMYK value is (2,6,0,2).
CMYK: (2,6,0,2) C2M6Y0K2 (2%,6%,0%,2%) (0.02/0.06/0.00/0.02)
F5 | EA | FA | |
---|---|---|---|
RGB | 245 | 234 | 250 |
HSL | 281° | 61.54% | 94.90% |
HSB/HSV | 281° | 6.40% | 98.04% |
CMYK | 2.00% | 6.40% | 0.00% |
1.96% |
HEX | F5 | EA | FA |
Decimal | 245 | 234 | 250 |
Binary | 11110101 | 11101010 | 11111010 |
Octal | 365 | 352 | 372 |
Examples of css and html codes for elements with #F5EAFA color. Also use rgb(245,234,250) instead hex code.
.myTextColor { color: #F5EAFA; }
<p style="color:#F5EAFA">This sample text font color is #F5EAFA.</p>
This text font color is #F5EAFA.
.myBgColor { background-color: #F5EAFA; }
<div style="background-color:#F5EAFA">Inner text</div>
This div background color is #F5EAFA.
.myBorderColor { border: 1px solid #F5EAFA; }
<div style="border:3px solid #F5EAFA">Div</div>
This div border color is #F5EAFA.
.myOpacity80 { color: #F5EAFA; opacity: 0.8; }
<p style="color:#F5EAFA;opacity:0.8;">80%</p>
Text with #F5EAFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5EAFA;}
<p style="text-shadow: 3px 3px 1px #F5EAFA">Text here.</p>
This text has shadow with #F5EAFA color.
.textShadow {text-shadow: 3px 3px 1px #F5EAFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5EAFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5EAFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5EAFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5EAFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5EAFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5EAFA; -webkit-box-shadow: 1px 1px 3px 2px #F5EAFA; box-shadow: 1px 1px 3px 2px #F5EAFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5EAFA; -webkit-box-shadow: 1px 1px 3px 2px #F5EAFA; box-shadow:1px 1px 3px 2px #F5EAFA;">
Div content here</div>
This text has color #F5EAFA on black background.
This text has color #F5EAFA on white background.
This text has black color on #F5EAFA background.
This text has white color on #F5EAFA background.