HEX: #F7E4FF
RGB: (247,228,255)
#F7E4FF contains red, green and blue colors in about the same proportion. Web safe color of #F7E4FF is #FFCCFF (or #FCF).
#F7E4FF color RGB value is (247,228,255).
RGB: (247,228,255) (97%,89%,100%)
R 247 of 255 = 97%
G 228 of 255 = 89%
B 255 of 255 = 100%
R + G + B ~ 95%. #F7E4FF is light color.
R + G + B =
247 + 228 + 255 = 730 (100%)
R 247 of 730 ~ 33.84%
G 228 of 730 ~ 31.23%
B 255 of 730 ~ 34.93%
#F7E4FF color CMYK value is (3,11,0,0).
CMYK: (3,11,0,0) C3M11Y0K0 (3%,11%,0%,0%) (0.03/0.11/0.00/0.00)
F7 | E4 | FF | |
---|---|---|---|
RGB | 247 | 228 | 255 |
HSL | 282° | 100.00% | 94.71% |
HSB/HSV | 282° | 10.59% | 100.00% |
CMYK | 3.14% | 10.59% | 0.00% |
0.00% |
HEX | F7 | E4 | FF |
Decimal | 247 | 228 | 255 |
Binary | 11110111 | 11100100 | 11111111 |
Octal | 367 | 344 | 377 |
Examples of css and html codes for elements with #F7E4FF color. Also use rgb(247,228,255) instead hex code.
.myTextColor { color: #F7E4FF; }
<p style="color:#F7E4FF">This sample text font color is #F7E4FF.</p>
This text font color is #F7E4FF.
.myBgColor { background-color: #F7E4FF; }
<div style="background-color:#F7E4FF">Inner text</div>
This div background color is #F7E4FF.
.myBorderColor { border: 1px solid #F7E4FF; }
<div style="border:3px solid #F7E4FF">Div</div>
This div border color is #F7E4FF.
.myOpacity80 { color: #F7E4FF; opacity: 0.8; }
<p style="color:#F7E4FF;opacity:0.8;">80%</p>
Text with #F7E4FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F7E4FF;}
<p style="text-shadow: 3px 3px 1px #F7E4FF">Text here.</p>
This text has shadow with #F7E4FF color.
.textShadow {text-shadow: 3px 3px 1px #F7E4FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F7E4FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F7E4FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F7E4FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F7E4FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F7E4FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F7E4FF; -webkit-box-shadow: 1px 1px 3px 2px #F7E4FF; box-shadow: 1px 1px 3px 2px #F7E4FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F7E4FF; -webkit-box-shadow: 1px 1px 3px 2px #F7E4FF; box-shadow:1px 1px 3px 2px #F7E4FF;">
Div content here</div>
This text has color #F7E4FF on black background.
This text has color #F7E4FF on white background.
This text has black color on #F7E4FF background.
This text has white color on #F7E4FF background.