HEX: #75888D
RGB: (117,136,141)
#75888D contains red, green and blue colors in about the same proportion. Web safe color of #75888D is #669999 (or #699).
#75888D color RGB value is (117,136,141).
RGB: (117,136,141) (46%,53%,55%)
R 117 of 255 = 46%
G 136 of 255 = 53%
B 141 of 255 = 55%
R + G + B ~ 51%. #75888D is middle color (not dark and not light).
R + G + B =
117 + 136 + 141 = 394 (100%)
R 117 of 394 ~ 29.7%
G 136 of 394 ~ 34.52%
B 141 of 394 ~ 35.79%
#75888D color CMYK value is (17,4,0,45).
CMYK: (17,4,0,45) C17M4Y0K45 (17%,4%,0%,45%) (0.17/0.04/0.00/0.45)
75 | 88 | 8D | |
---|---|---|---|
RGB | 117 | 136 | 141 |
HSL | 193° | 9.52% | 50.59% |
HSB/HSV | 193° | 17.02% | 55.29% |
CMYK | 17.02% | 3.55% | 0.00% |
44.71% |
HEX | 75 | 88 | 8D |
Decimal | 117 | 136 | 141 |
Binary | 1110101 | 10001000 | 10001101 |
Octal | 165 | 210 | 215 |
Examples of css and html codes for elements with #75888D color. Also use rgb(117,136,141) instead hex code.
.myTextColor { color: #75888D; }
<p style="color:#75888D">This sample text font color is #75888D.</p>
This text font color is #75888D.
.myBgColor { background-color: #75888D; }
<div style="background-color:#75888D">Inner text</div>
This div background color is #75888D.
.myBorderColor { border: 1px solid #75888D; }
<div style="border:3px solid #75888D">Div</div>
This div border color is #75888D.
.myOpacity80 { color: #75888D; opacity: 0.8; }
<p style="color:#75888D;opacity:0.8;">80%</p>
Text with #75888D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75888D;}
<p style="text-shadow: 3px 3px 1px #75888D">Text here.</p>
This text has shadow with #75888D color.
.textShadow {text-shadow: 3px 3px 1px #75888D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75888D, 5px 5px 20px red">Text here.</p>
This text has shadow with #75888D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75888D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75888D, Direction=45, Strength=4)">Text</p>
This text has shadow with #75888D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75888D; -webkit-box-shadow: 1px 1px 3px 2px #75888D; box-shadow: 1px 1px 3px 2px #75888D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75888D; -webkit-box-shadow: 1px 1px 3px 2px #75888D; box-shadow:1px 1px 3px 2px #75888D;">
Div content here</div>
This text has color #75888D on black background.
This text has color #75888D on white background.
This text has black color on #75888D background.
This text has white color on #75888D background.