HEX: #73887D
RGB: (115,136,125)
#73887D contains red, green and blue colors in about the same proportion. Web safe color of #73887D is #669966 (or #696).
#73887D color RGB value is (115,136,125).
RGB: (115,136,125) (45%,53%,49%)
R 115 of 255 = 45%
G 136 of 255 = 53%
B 125 of 255 = 49%
R + G + B ~ 49%. #73887D is middle color (not dark and not light).
R + G + B =
115 + 136 + 125 = 376 (100%)
R 115 of 376 ~ 30.59%
G 136 of 376 ~ 36.17%
B 125 of 376 ~ 33.24%
#73887D color CMYK value is (15,0,8,47).
CMYK: (15,0,8,47) C15M0Y8K47 (15%,0%,8%,47%) (0.15/0.00/0.08/0.47)
73 | 88 | 7D | |
---|---|---|---|
RGB | 115 | 136 | 125 |
HSL | 149° | 8.37% | 49.22% |
HSB/HSV | 149° | 15.44% | 53.33% |
CMYK | 15.44% | 0.00% | 8.09% |
46.67% |
HEX | 73 | 88 | 7D |
Decimal | 115 | 136 | 125 |
Binary | 1110011 | 10001000 | 1111101 |
Octal | 163 | 210 | 175 |
Examples of css and html codes for elements with #73887D color. Also use rgb(115,136,125) instead hex code.
.myTextColor { color: #73887D; }
<p style="color:#73887D">This sample text font color is #73887D.</p>
This text font color is #73887D.
.myBgColor { background-color: #73887D; }
<div style="background-color:#73887D">Inner text</div>
This div background color is #73887D.
.myBorderColor { border: 1px solid #73887D; }
<div style="border:3px solid #73887D">Div</div>
This div border color is #73887D.
.myOpacity80 { color: #73887D; opacity: 0.8; }
<p style="color:#73887D;opacity:0.8;">80%</p>
Text with #73887D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #73887D;}
<p style="text-shadow: 3px 3px 1px #73887D">Text here.</p>
This text has shadow with #73887D color.
.textShadow {text-shadow: 3px 3px 1px #73887D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #73887D, 5px 5px 20px red">Text here.</p>
This text has shadow with #73887D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#73887D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#73887D, Direction=45, Strength=4)">Text</p>
This text has shadow with #73887D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #73887D; -webkit-box-shadow: 1px 1px 3px 2px #73887D; box-shadow: 1px 1px 3px 2px #73887D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #73887D; -webkit-box-shadow: 1px 1px 3px 2px #73887D; box-shadow:1px 1px 3px 2px #73887D;">
Div content here</div>
This text has color #73887D on black background.
This text has color #73887D on white background.
This text has black color on #73887D background.
This text has white color on #73887D background.