HEX: #E7F9FF
RGB: (231,249,255)
#E7F9FF contains red, green and blue colors in about the same proportion. Web safe color of #E7F9FF is #FFFFFF (or #FFF).
#E7F9FF color RGB value is (231,249,255).
RGB: (231,249,255) (91%,98%,100%)
R 231 of 255 = 91%
G 249 of 255 = 98%
B 255 of 255 = 100%
R + G + B ~ 96%. #E7F9FF is light color.
R + G + B =
231 + 249 + 255 = 735 (100%)
R 231 of 735 ~ 31.43%
G 249 of 735 ~ 33.88%
B 255 of 735 ~ 34.69%
#E7F9FF color CMYK value is (9,2,0,0).
CMYK: (9,2,0,0) C9M2Y0K0 (9%,2%,0%,0%) (0.09/0.02/0.00/0.00)
E7 | F9 | FF | |
---|---|---|---|
RGB | 231 | 249 | 255 |
HSL | 195° | 100.00% | 95.29% |
HSB/HSV | 195° | 9.41% | 100.00% |
CMYK | 9.41% | 2.35% | 0.00% |
0.00% |
HEX | E7 | F9 | FF |
Decimal | 231 | 249 | 255 |
Binary | 11100111 | 11111001 | 11111111 |
Octal | 347 | 371 | 377 |
Examples of css and html codes for elements with #E7F9FF color. Also use rgb(231,249,255) instead hex code.
.myTextColor { color: #E7F9FF; }
<p style="color:#E7F9FF">This sample text font color is #E7F9FF.</p>
This text font color is #E7F9FF.
.myBgColor { background-color: #E7F9FF; }
<div style="background-color:#E7F9FF">Inner text</div>
This div background color is #E7F9FF.
.myBorderColor { border: 1px solid #E7F9FF; }
<div style="border:3px solid #E7F9FF">Div</div>
This div border color is #E7F9FF.
.myOpacity80 { color: #E7F9FF; opacity: 0.8; }
<p style="color:#E7F9FF;opacity:0.8;">80%</p>
Text with #E7F9FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7F9FF;}
<p style="text-shadow: 3px 3px 1px #E7F9FF">Text here.</p>
This text has shadow with #E7F9FF color.
.textShadow {text-shadow: 3px 3px 1px #E7F9FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7F9FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7F9FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7F9FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7F9FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7F9FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7F9FF; -webkit-box-shadow: 1px 1px 3px 2px #E7F9FF; box-shadow: 1px 1px 3px 2px #E7F9FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7F9FF; -webkit-box-shadow: 1px 1px 3px 2px #E7F9FF; box-shadow:1px 1px 3px 2px #E7F9FF;">
Div content here</div>
This text has color #E7F9FF on black background.
This text has color #E7F9FF on white background.
This text has black color on #E7F9FF background.
This text has white color on #E7F9FF background.