HEX: #7EAFEE
RGB: (126,175,238)
#7EAFEE contains mainly blue color. Web safe color of #7EAFEE is #6699FF (or #69F).
#7EAFEE color RGB value is (126,175,238).
RGB: (126,175,238) (49%,69%,93%)
R 126 of 255 = 49%
G 175 of 255 = 69%
B 238 of 255 = 93%
R + G + B ~ 70%. #7EAFEE is quite light color.
R + G + B =
126 + 175 + 238 = 539 (100%)
R 126 of 539 ~ 23.38%
G 175 of 539 ~ 32.47%
B 238 of 539 ~ 44.16%
#7EAFEE color CMYK value is (47,26,0,7).
CMYK: (47,26,0,7) C47M26Y0K7 (47%,26%,0%,7%) (0.47/0.26/0.00/0.07)
7E | AF | EE | |
---|---|---|---|
RGB | 126 | 175 | 238 |
HSL | 214° | 76.71% | 71.37% |
HSB/HSV | 214° | 47.06% | 93.33% |
CMYK | 47.06% | 26.47% | 0.00% |
6.67% |
HEX | 7E | AF | EE |
Decimal | 126 | 175 | 238 |
Binary | 1111110 | 10101111 | 11101110 |
Octal | 176 | 257 | 356 |
Examples of css and html codes for elements with #7EAFEE color. Also use rgb(126,175,238) instead hex code.
.myTextColor { color: #7EAFEE; }
<p style="color:#7EAFEE">This sample text font color is #7EAFEE.</p>
This text font color is #7EAFEE.
.myBgColor { background-color: #7EAFEE; }
<div style="background-color:#7EAFEE">Inner text</div>
This div background color is #7EAFEE.
.myBorderColor { border: 1px solid #7EAFEE; }
<div style="border:3px solid #7EAFEE">Div</div>
This div border color is #7EAFEE.
.myOpacity80 { color: #7EAFEE; opacity: 0.8; }
<p style="color:#7EAFEE;opacity:0.8;">80%</p>
Text with #7EAFEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EAFEE;}
<p style="text-shadow: 3px 3px 1px #7EAFEE">Text here.</p>
This text has shadow with #7EAFEE color.
.textShadow {text-shadow: 3px 3px 1px #7EAFEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EAFEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EAFEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EAFEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EAFEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EAFEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EAFEE; -webkit-box-shadow: 1px 1px 3px 2px #7EAFEE; box-shadow: 1px 1px 3px 2px #7EAFEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EAFEE; -webkit-box-shadow: 1px 1px 3px 2px #7EAFEE; box-shadow:1px 1px 3px 2px #7EAFEE;">
Div content here</div>
This text has color #7EAFEE on black background.
This text has color #7EAFEE on white background.
This text has black color on #7EAFEE background.
This text has white color on #7EAFEE background.