HEX: #F7EDFF
RGB: (247,237,255)
#F7EDFF contains red, green and blue colors in about the same proportion. Web safe color of #F7EDFF is #FFFFFF (or #FFF).
#F7EDFF color RGB value is (247,237,255).
RGB: (247,237,255) (97%,93%,100%)
R 247 of 255 = 97%
G 237 of 255 = 93%
B 255 of 255 = 100%
R + G + B ~ 97%. #F7EDFF is light color.
R + G + B =
247 + 237 + 255 = 739 (100%)
R 247 of 739 ~ 33.42%
G 237 of 739 ~ 32.07%
B 255 of 739 ~ 34.51%
#F7EDFF color CMYK value is (3,7,0,0).
CMYK: (3,7,0,0) C3M7Y0K0 (3%,7%,0%,0%) (0.03/0.07/0.00/0.00)
F7 | ED | FF | |
---|---|---|---|
RGB | 247 | 237 | 255 |
HSL | 273° | 100.00% | 96.47% |
HSB/HSV | 273° | 7.06% | 100.00% |
CMYK | 3.14% | 7.06% | 0.00% |
0.00% |
HEX | F7 | ED | FF |
Decimal | 247 | 237 | 255 |
Binary | 11110111 | 11101101 | 11111111 |
Octal | 367 | 355 | 377 |
Examples of css and html codes for elements with #F7EDFF color. Also use rgb(247,237,255) instead hex code.
.myTextColor { color: #F7EDFF; }
<p style="color:#F7EDFF">This sample text font color is #F7EDFF.</p>
This text font color is #F7EDFF.
.myBgColor { background-color: #F7EDFF; }
<div style="background-color:#F7EDFF">Inner text</div>
This div background color is #F7EDFF.
.myBorderColor { border: 1px solid #F7EDFF; }
<div style="border:3px solid #F7EDFF">Div</div>
This div border color is #F7EDFF.
.myOpacity80 { color: #F7EDFF; opacity: 0.8; }
<p style="color:#F7EDFF;opacity:0.8;">80%</p>
Text with #F7EDFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F7EDFF;}
<p style="text-shadow: 3px 3px 1px #F7EDFF">Text here.</p>
This text has shadow with #F7EDFF color.
.textShadow {text-shadow: 3px 3px 1px #F7EDFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F7EDFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F7EDFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F7EDFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F7EDFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F7EDFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F7EDFF; -webkit-box-shadow: 1px 1px 3px 2px #F7EDFF; box-shadow: 1px 1px 3px 2px #F7EDFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F7EDFF; -webkit-box-shadow: 1px 1px 3px 2px #F7EDFF; box-shadow:1px 1px 3px 2px #F7EDFF;">
Div content here</div>
This text has color #F7EDFF on black background.
This text has color #F7EDFF on white background.
This text has black color on #F7EDFF background.
This text has white color on #F7EDFF background.