HEX: #8EA3AB
RGB: (142,163,171)
#8EA3AB contains red, green and blue colors in about the same proportion. Web safe color of #8EA3AB is #999999 (or #999).
#8EA3AB color RGB value is (142,163,171).
RGB: (142,163,171) (56%,64%,67%)
R 142 of 255 = 56%
G 163 of 255 = 64%
B 171 of 255 = 67%
R + G + B ~ 62%. #8EA3AB is quite light color.
R + G + B =
142 + 163 + 171 = 476 (100%)
R 142 of 476 ~ 29.83%
G 163 of 476 ~ 34.24%
B 171 of 476 ~ 35.92%
#8EA3AB color CMYK value is (17,5,0,33).
CMYK: (17,5,0,33) C17M5Y0K33 (17%,5%,0%,33%) (0.17/0.05/0.00/0.33)
8E | A3 | AB | |
---|---|---|---|
RGB | 142 | 163 | 171 |
HSL | 197° | 14.72% | 61.37% |
HSB/HSV | 197° | 16.96% | 67.06% |
CMYK | 16.96% | 4.68% | 0.00% |
32.94% |
HEX | 8E | A3 | AB |
Decimal | 142 | 163 | 171 |
Binary | 10001110 | 10100011 | 10101011 |
Octal | 216 | 243 | 253 |
Examples of css and html codes for elements with #8EA3AB color. Also use rgb(142,163,171) instead hex code.
.myTextColor { color: #8EA3AB; }
<p style="color:#8EA3AB">This sample text font color is #8EA3AB.</p>
This text font color is #8EA3AB.
.myBgColor { background-color: #8EA3AB; }
<div style="background-color:#8EA3AB">Inner text</div>
This div background color is #8EA3AB.
.myBorderColor { border: 1px solid #8EA3AB; }
<div style="border:3px solid #8EA3AB">Div</div>
This div border color is #8EA3AB.
.myOpacity80 { color: #8EA3AB; opacity: 0.8; }
<p style="color:#8EA3AB;opacity:0.8;">80%</p>
Text with #8EA3AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8EA3AB;}
<p style="text-shadow: 3px 3px 1px #8EA3AB">Text here.</p>
This text has shadow with #8EA3AB color.
.textShadow {text-shadow: 3px 3px 1px #8EA3AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8EA3AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #8EA3AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8EA3AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8EA3AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #8EA3AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8EA3AB; -webkit-box-shadow: 1px 1px 3px 2px #8EA3AB; box-shadow: 1px 1px 3px 2px #8EA3AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8EA3AB; -webkit-box-shadow: 1px 1px 3px 2px #8EA3AB; box-shadow:1px 1px 3px 2px #8EA3AB;">
Div content here</div>
This text has color #8EA3AB on black background.
This text has color #8EA3AB on white background.
This text has black color on #8EA3AB background.
This text has white color on #8EA3AB background.