HEX: #73877A
RGB: (115,135,122)
#73877A contains red, green and blue colors in about the same proportion. Web safe color of #73877A is #669966 (or #696).
#73877A color RGB value is (115,135,122).
RGB: (115,135,122) (45%,53%,48%)
R 115 of 255 = 45%
G 135 of 255 = 53%
B 122 of 255 = 48%
R + G + B ~ 49%. #73877A is middle color (not dark and not light).
R + G + B =
115 + 135 + 122 = 372 (100%)
R 115 of 372 ~ 30.91%
G 135 of 372 ~ 36.29%
B 122 of 372 ~ 32.8%
#73877A color CMYK value is (15,0,10,47).
CMYK: (15,0,10,47) C15M0Y10K47 (15%,0%,10%,47%) (0.15/0.00/0.10/0.47)
73 | 87 | 7A | |
---|---|---|---|
RGB | 115 | 135 | 122 |
HSL | 141° | 8.00% | 49.02% |
HSB/HSV | 141° | 14.81% | 52.94% |
CMYK | 14.81% | 0.00% | 9.63% |
47.06% |
HEX | 73 | 87 | 7A |
Decimal | 115 | 135 | 122 |
Binary | 1110011 | 10000111 | 1111010 |
Octal | 163 | 207 | 172 |
Examples of css and html codes for elements with #73877A color. Also use rgb(115,135,122) instead hex code.
.myTextColor { color: #73877A; }
<p style="color:#73877A">This sample text font color is #73877A.</p>
This text font color is #73877A.
.myBgColor { background-color: #73877A; }
<div style="background-color:#73877A">Inner text</div>
This div background color is #73877A.
.myBorderColor { border: 1px solid #73877A; }
<div style="border:3px solid #73877A">Div</div>
This div border color is #73877A.
.myOpacity80 { color: #73877A; opacity: 0.8; }
<p style="color:#73877A;opacity:0.8;">80%</p>
Text with #73877A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #73877A;}
<p style="text-shadow: 3px 3px 1px #73877A">Text here.</p>
This text has shadow with #73877A color.
.textShadow {text-shadow: 3px 3px 1px #73877A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #73877A, 5px 5px 20px red">Text here.</p>
This text has shadow with #73877A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#73877A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#73877A, Direction=45, Strength=4)">Text</p>
This text has shadow with #73877A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #73877A; -webkit-box-shadow: 1px 1px 3px 2px #73877A; box-shadow: 1px 1px 3px 2px #73877A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #73877A; -webkit-box-shadow: 1px 1px 3px 2px #73877A; box-shadow:1px 1px 3px 2px #73877A;">
Div content here</div>
This text has color #73877A on black background.
This text has color #73877A on white background.
This text has black color on #73877A background.
This text has white color on #73877A background.