HEX: #76879F
RGB: (118,135,159)
#76879F contains red, green and blue colors in about the same proportion. Web safe color of #76879F is #669999 (or #699).
#76879F color RGB value is (118,135,159).
RGB: (118,135,159) (46%,53%,62%)
R 118 of 255 = 46%
G 135 of 255 = 53%
B 159 of 255 = 62%
R + G + B ~ 54%. #76879F is middle color (not dark and not light).
R + G + B =
118 + 135 + 159 = 412 (100%)
R 118 of 412 ~ 28.64%
G 135 of 412 ~ 32.77%
B 159 of 412 ~ 38.59%
#76879F color CMYK value is (26,15,0,38).
CMYK: (26,15,0,38) C26M15Y0K38 (26%,15%,0%,38%) (0.26/0.15/0.00/0.38)
76 | 87 | 9F | |
---|---|---|---|
RGB | 118 | 135 | 159 |
HSL | 215° | 17.60% | 54.31% |
HSB/HSV | 215° | 25.79% | 62.35% |
CMYK | 25.79% | 15.09% | 0.00% |
37.65% |
HEX | 76 | 87 | 9F |
Decimal | 118 | 135 | 159 |
Binary | 1110110 | 10000111 | 10011111 |
Octal | 166 | 207 | 237 |
Examples of css and html codes for elements with #76879F color. Also use rgb(118,135,159) instead hex code.
.myTextColor { color: #76879F; }
<p style="color:#76879F">This sample text font color is #76879F.</p>
This text font color is #76879F.
.myBgColor { background-color: #76879F; }
<div style="background-color:#76879F">Inner text</div>
This div background color is #76879F.
.myBorderColor { border: 1px solid #76879F; }
<div style="border:3px solid #76879F">Div</div>
This div border color is #76879F.
.myOpacity80 { color: #76879F; opacity: 0.8; }
<p style="color:#76879F;opacity:0.8;">80%</p>
Text with #76879F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76879F;}
<p style="text-shadow: 3px 3px 1px #76879F">Text here.</p>
This text has shadow with #76879F color.
.textShadow {text-shadow: 3px 3px 1px #76879F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76879F, 5px 5px 20px red">Text here.</p>
This text has shadow with #76879F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76879F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76879F, Direction=45, Strength=4)">Text</p>
This text has shadow with #76879F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76879F; -webkit-box-shadow: 1px 1px 3px 2px #76879F; box-shadow: 1px 1px 3px 2px #76879F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76879F; -webkit-box-shadow: 1px 1px 3px 2px #76879F; box-shadow:1px 1px 3px 2px #76879F;">
Div content here</div>
This text has color #76879F on black background.
This text has color #76879F on white background.
This text has black color on #76879F background.
This text has white color on #76879F background.