HEX: #75997F
RGB: (117,153,127)
#75997F contains red, green and blue colors in about the same proportion. Web safe color of #75997F is #669966 (or #696).
#75997F color RGB value is (117,153,127).
RGB: (117,153,127) (46%,60%,50%)
R 117 of 255 = 46%
G 153 of 255 = 60%
B 127 of 255 = 50%
R + G + B ~ 52%. #75997F is middle color (not dark and not light).
R + G + B =
117 + 153 + 127 = 397 (100%)
R 117 of 397 ~ 29.47%
G 153 of 397 ~ 38.54%
B 127 of 397 ~ 31.99%
#75997F color CMYK value is (24,0,17,40).
CMYK: (24,0,17,40) C24M0Y17K40 (24%,0%,17%,40%) (0.24/0.00/0.17/0.40)
75 | 99 | 7F | |
---|---|---|---|
RGB | 117 | 153 | 127 |
HSL | 137° | 15.00% | 52.94% |
HSB/HSV | 137° | 23.53% | 60.00% |
CMYK | 23.53% | 0.00% | 16.99% |
40.00% |
HEX | 75 | 99 | 7F |
Decimal | 117 | 153 | 127 |
Binary | 1110101 | 10011001 | 1111111 |
Octal | 165 | 231 | 177 |
Examples of css and html codes for elements with #75997F color. Also use rgb(117,153,127) instead hex code.
.myTextColor { color: #75997F; }
<p style="color:#75997F">This sample text font color is #75997F.</p>
This text font color is #75997F.
.myBgColor { background-color: #75997F; }
<div style="background-color:#75997F">Inner text</div>
This div background color is #75997F.
.myBorderColor { border: 1px solid #75997F; }
<div style="border:3px solid #75997F">Div</div>
This div border color is #75997F.
.myOpacity80 { color: #75997F; opacity: 0.8; }
<p style="color:#75997F;opacity:0.8;">80%</p>
Text with #75997F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75997F;}
<p style="text-shadow: 3px 3px 1px #75997F">Text here.</p>
This text has shadow with #75997F color.
.textShadow {text-shadow: 3px 3px 1px #75997F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75997F, 5px 5px 20px red">Text here.</p>
This text has shadow with #75997F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75997F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75997F, Direction=45, Strength=4)">Text</p>
This text has shadow with #75997F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75997F; -webkit-box-shadow: 1px 1px 3px 2px #75997F; box-shadow: 1px 1px 3px 2px #75997F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75997F; -webkit-box-shadow: 1px 1px 3px 2px #75997F; box-shadow:1px 1px 3px 2px #75997F;">
Div content here</div>
This text has color #75997F on black background.
This text has color #75997F on white background.
This text has black color on #75997F background.
This text has white color on #75997F background.