HEX: #718E8D
RGB: (113,142,141)
#718E8D contains red, green and blue colors in about the same proportion. Web safe color of #718E8D is #669999 (or #699).
#718E8D color RGB value is (113,142,141).
RGB: (113,142,141) (44%,56%,55%)
R 113 of 255 = 44%
G 142 of 255 = 56%
B 141 of 255 = 55%
R + G + B ~ 52%. #718E8D is middle color (not dark and not light).
R + G + B =
113 + 142 + 141 = 396 (100%)
R 113 of 396 ~ 28.54%
G 142 of 396 ~ 35.86%
B 141 of 396 ~ 35.61%
#718E8D color CMYK value is (20,0,1,44).
CMYK: (20,0,1,44) C20M0Y1K44 (20%,0%,1%,44%) (0.20/0.00/0.01/0.44)
71 | 8E | 8D | |
---|---|---|---|
RGB | 113 | 142 | 141 |
HSL | 178° | 11.37% | 50.00% |
HSB/HSV | 178° | 20.42% | 55.69% |
CMYK | 20.42% | 0.00% | 0.70% |
44.31% |
HEX | 71 | 8E | 8D |
Decimal | 113 | 142 | 141 |
Binary | 1110001 | 10001110 | 10001101 |
Octal | 161 | 216 | 215 |
Examples of css and html codes for elements with #718E8D color. Also use rgb(113,142,141) instead hex code.
.myTextColor { color: #718E8D; }
<p style="color:#718E8D">This sample text font color is #718E8D.</p>
This text font color is #718E8D.
.myBgColor { background-color: #718E8D; }
<div style="background-color:#718E8D">Inner text</div>
This div background color is #718E8D.
.myBorderColor { border: 1px solid #718E8D; }
<div style="border:3px solid #718E8D">Div</div>
This div border color is #718E8D.
.myOpacity80 { color: #718E8D; opacity: 0.8; }
<p style="color:#718E8D;opacity:0.8;">80%</p>
Text with #718E8D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #718E8D;}
<p style="text-shadow: 3px 3px 1px #718E8D">Text here.</p>
This text has shadow with #718E8D color.
.textShadow {text-shadow: 3px 3px 1px #718E8D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #718E8D, 5px 5px 20px red">Text here.</p>
This text has shadow with #718E8D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#718E8D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#718E8D, Direction=45, Strength=4)">Text</p>
This text has shadow with #718E8D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #718E8D; -webkit-box-shadow: 1px 1px 3px 2px #718E8D; box-shadow: 1px 1px 3px 2px #718E8D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #718E8D; -webkit-box-shadow: 1px 1px 3px 2px #718E8D; box-shadow:1px 1px 3px 2px #718E8D;">
Div content here</div>
This text has color #718E8D on black background.
This text has color #718E8D on white background.
This text has black color on #718E8D background.
This text has white color on #718E8D background.