HEX: #717955
RGB: (113,121,85)
#717955 contains red, green and blue colors in about the same proportion. Web safe color of #717955 is #666666 (or #666).
#717955 color RGB value is (113,121,85).
RGB: (113,121,85) (44%,47%,33%)
R 113 of 255 = 44%
G 121 of 255 = 47%
B 85 of 255 = 33%
R + G + B ~ 41%. #717955 is middle color (not dark and not light).
R + G + B =
113 + 121 + 85 = 319 (100%)
R 113 of 319 ~ 35.42%
G 121 of 319 ~ 37.93%
B 85 of 319 ~ 26.65%
#717955 color CMYK value is (7,0,30,53).
CMYK: (7,0,30,53) C7M0Y30K53 (7%,0%,30%,53%) (0.07/0.00/0.30/0.53)
71 | 79 | 55 | |
---|---|---|---|
RGB | 113 | 121 | 85 |
HSL | 73° | 17.48% | 40.39% |
HSB/HSV | 73° | 29.75% | 47.45% |
CMYK | 6.61% | 0.00% | 29.75% |
52.55% |
HEX | 71 | 79 | 55 |
Decimal | 113 | 121 | 85 |
Binary | 1110001 | 1111001 | 1010101 |
Octal | 161 | 171 | 125 |
Examples of css and html codes for elements with #717955 color. Also use rgb(113,121,85) instead hex code.
.myTextColor { color: #717955; }
<p style="color:#717955">This sample text font color is #717955.</p>
This text font color is #717955.
.myBgColor { background-color: #717955; }
<div style="background-color:#717955">Inner text</div>
This div background color is #717955.
.myBorderColor { border: 1px solid #717955; }
<div style="border:3px solid #717955">Div</div>
This div border color is #717955.
.myOpacity80 { color: #717955; opacity: 0.8; }
<p style="color:#717955;opacity:0.8;">80%</p>
Text with #717955 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #717955;}
<p style="text-shadow: 3px 3px 1px #717955">Text here.</p>
This text has shadow with #717955 color.
.textShadow {text-shadow: 3px 3px 1px #717955, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #717955, 5px 5px 20px red">Text here.</p>
This text has shadow with #717955 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#717955, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#717955, Direction=45, Strength=4)">Text</p>
This text has shadow with #717955 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #717955; -webkit-box-shadow: 1px 1px 3px 2px #717955; box-shadow: 1px 1px 3px 2px #717955; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #717955; -webkit-box-shadow: 1px 1px 3px 2px #717955; box-shadow:1px 1px 3px 2px #717955;">
Div content here</div>
This text has color #717955 on black background.
This text has color #717955 on white background.
This text has black color on #717955 background.
This text has white color on #717955 background.