HEX: #75688D
RGB: (117,104,141)
#75688D contains red, green and blue colors in about the same proportion. Web safe color of #75688D is #666699 (or #669).
#75688D color RGB value is (117,104,141).
RGB: (117,104,141) (46%,41%,55%)
R 117 of 255 = 46%
G 104 of 255 = 41%
B 141 of 255 = 55%
R + G + B ~ 47%. #75688D is middle color (not dark and not light).
R + G + B =
117 + 104 + 141 = 362 (100%)
R 117 of 362 ~ 32.32%
G 104 of 362 ~ 28.73%
B 141 of 362 ~ 38.95%
#75688D color CMYK value is (17,26,0,45).
CMYK: (17,26,0,45) C17M26Y0K45 (17%,26%,0%,45%) (0.17/0.26/0.00/0.45)
75 | 68 | 8D | |
---|---|---|---|
RGB | 117 | 104 | 141 |
HSL | 261° | 15.10% | 48.04% |
HSB/HSV | 261° | 26.24% | 55.29% |
CMYK | 17.02% | 26.24% | 0.00% |
44.71% |
HEX | 75 | 68 | 8D |
Decimal | 117 | 104 | 141 |
Binary | 1110101 | 1101000 | 10001101 |
Octal | 165 | 150 | 215 |
Examples of css and html codes for elements with #75688D color. Also use rgb(117,104,141) instead hex code.
.myTextColor { color: #75688D; }
<p style="color:#75688D">This sample text font color is #75688D.</p>
This text font color is #75688D.
.myBgColor { background-color: #75688D; }
<div style="background-color:#75688D">Inner text</div>
This div background color is #75688D.
.myBorderColor { border: 1px solid #75688D; }
<div style="border:3px solid #75688D">Div</div>
This div border color is #75688D.
.myOpacity80 { color: #75688D; opacity: 0.8; }
<p style="color:#75688D;opacity:0.8;">80%</p>
Text with #75688D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75688D;}
<p style="text-shadow: 3px 3px 1px #75688D">Text here.</p>
This text has shadow with #75688D color.
.textShadow {text-shadow: 3px 3px 1px #75688D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75688D, 5px 5px 20px red">Text here.</p>
This text has shadow with #75688D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75688D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75688D, Direction=45, Strength=4)">Text</p>
This text has shadow with #75688D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75688D; -webkit-box-shadow: 1px 1px 3px 2px #75688D; box-shadow: 1px 1px 3px 2px #75688D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75688D; -webkit-box-shadow: 1px 1px 3px 2px #75688D; box-shadow:1px 1px 3px 2px #75688D;">
Div content here</div>
This text has color #75688D on black background.
This text has color #75688D on white background.
This text has black color on #75688D background.
This text has white color on #75688D background.