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