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