HEX: #495847
RGB: (73,88,71)
#495847 contains red, green and blue colors in about the same proportion. Web safe color of #495847 is #336633 (or #363).
#495847 color RGB value is (73,88,71).
RGB: (73,88,71) (29%,35%,28%)
R 73 of 255 = 29%
G 88 of 255 = 35%
B 71 of 255 = 28%
R + G + B ~ 31%. #495847 is quite dark color.
R + G + B =
73 + 88 + 71 = 232 (100%)
R 73 of 232 ~ 31.47%
G 88 of 232 ~ 37.93%
B 71 of 232 ~ 30.6%
#495847 color CMYK value is (17,0,19,65).
CMYK: (17,0,19,65) C17M0Y19K65 (17%,0%,19%,65%) (0.17/0.00/0.19/0.65)
49 | 58 | 47 | |
---|---|---|---|
RGB | 73 | 88 | 71 |
HSL | 113° | 10.69% | 31.18% |
HSB/HSV | 113° | 19.32% | 34.51% |
CMYK | 17.05% | 0.00% | 19.32% |
65.49% |
HEX | 49 | 58 | 47 |
Decimal | 73 | 88 | 71 |
Binary | 1001001 | 1011000 | 1000111 |
Octal | 111 | 130 | 107 |
Examples of css and html codes for elements with #495847 color. Also use rgb(73,88,71) instead hex code.
.myTextColor { color: #495847; }
<p style="color:#495847">This sample text font color is #495847.</p>
This text font color is #495847.
.myBgColor { background-color: #495847; }
<div style="background-color:#495847">Inner text</div>
This div background color is #495847.
.myBorderColor { border: 1px solid #495847; }
<div style="border:3px solid #495847">Div</div>
This div border color is #495847.
.myOpacity80 { color: #495847; opacity: 0.8; }
<p style="color:#495847;opacity:0.8;">80%</p>
Text with #495847 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #495847;}
<p style="text-shadow: 3px 3px 1px #495847">Text here.</p>
This text has shadow with #495847 color.
.textShadow {text-shadow: 3px 3px 1px #495847, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #495847, 5px 5px 20px red">Text here.</p>
This text has shadow with #495847 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#495847, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#495847, Direction=45, Strength=4)">Text</p>
This text has shadow with #495847 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #495847; -webkit-box-shadow: 1px 1px 3px 2px #495847; box-shadow: 1px 1px 3px 2px #495847; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #495847; -webkit-box-shadow: 1px 1px 3px 2px #495847; box-shadow:1px 1px 3px 2px #495847;">
Div content here</div>
This text has color #495847 on black background.
This text has color #495847 on white background.
This text has black color on #495847 background.
This text has white color on #495847 background.