HEX: #7EAFAD
RGB: (126,175,173)
#7EAFAD contains red, green and blue colors in about the same proportion. Web safe color of #7EAFAD is #669999 (or #699).
#7EAFAD color RGB value is (126,175,173).
RGB: (126,175,173) (49%,69%,68%)
R 126 of 255 = 49%
G 175 of 255 = 69%
B 173 of 255 = 68%
R + G + B ~ 62%. #7EAFAD is quite light color.
R + G + B =
126 + 175 + 173 = 474 (100%)
R 126 of 474 ~ 26.58%
G 175 of 474 ~ 36.92%
B 173 of 474 ~ 36.5%
#7EAFAD color CMYK value is (28,0,1,31).
CMYK: (28,0,1,31) C28M0Y1K31 (28%,0%,1%,31%) (0.28/0.00/0.01/0.31)
7E | AF | AD | |
---|---|---|---|
RGB | 126 | 175 | 173 |
HSL | 178° | 23.44% | 59.02% |
HSB/HSV | 178° | 28.00% | 68.63% |
CMYK | 28.00% | 0.00% | 1.14% |
31.37% |
HEX | 7E | AF | AD |
Decimal | 126 | 175 | 173 |
Binary | 1111110 | 10101111 | 10101101 |
Octal | 176 | 257 | 255 |
Examples of css and html codes for elements with #7EAFAD color. Also use rgb(126,175,173) instead hex code.
.myTextColor { color: #7EAFAD; }
<p style="color:#7EAFAD">This sample text font color is #7EAFAD.</p>
This text font color is #7EAFAD.
.myBgColor { background-color: #7EAFAD; }
<div style="background-color:#7EAFAD">Inner text</div>
This div background color is #7EAFAD.
.myBorderColor { border: 1px solid #7EAFAD; }
<div style="border:3px solid #7EAFAD">Div</div>
This div border color is #7EAFAD.
.myOpacity80 { color: #7EAFAD; opacity: 0.8; }
<p style="color:#7EAFAD;opacity:0.8;">80%</p>
Text with #7EAFAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EAFAD;}
<p style="text-shadow: 3px 3px 1px #7EAFAD">Text here.</p>
This text has shadow with #7EAFAD color.
.textShadow {text-shadow: 3px 3px 1px #7EAFAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EAFAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EAFAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EAFAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EAFAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EAFAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EAFAD; -webkit-box-shadow: 1px 1px 3px 2px #7EAFAD; box-shadow: 1px 1px 3px 2px #7EAFAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EAFAD; -webkit-box-shadow: 1px 1px 3px 2px #7EAFAD; box-shadow:1px 1px 3px 2px #7EAFAD;">
Div content here</div>
This text has color #7EAFAD on black background.
This text has color #7EAFAD on white background.
This text has black color on #7EAFAD background.
This text has white color on #7EAFAD background.