HEX: #76949C
RGB: (118,148,156)
#76949C contains red, green and blue colors in about the same proportion. Web safe color of #76949C is #669999 (or #699).
#76949C color RGB value is (118,148,156).
RGB: (118,148,156) (46%,58%,61%)
R 118 of 255 = 46%
G 148 of 255 = 58%
B 156 of 255 = 61%
R + G + B ~ 55%. #76949C is middle color (not dark and not light).
R + G + B =
118 + 148 + 156 = 422 (100%)
R 118 of 422 ~ 27.96%
G 148 of 422 ~ 35.07%
B 156 of 422 ~ 36.97%
#76949C color CMYK value is (24,5,0,39).
CMYK: (24,5,0,39) C24M5Y0K39 (24%,5%,0%,39%) (0.24/0.05/0.00/0.39)
76 | 94 | 9C | |
---|---|---|---|
RGB | 118 | 148 | 156 |
HSL | 193° | 16.10% | 53.73% |
HSB/HSV | 193° | 24.36% | 61.18% |
CMYK | 24.36% | 5.13% | 0.00% |
38.82% |
HEX | 76 | 94 | 9C |
Decimal | 118 | 148 | 156 |
Binary | 1110110 | 10010100 | 10011100 |
Octal | 166 | 224 | 234 |
Examples of css and html codes for elements with #76949C color. Also use rgb(118,148,156) instead hex code.
.myTextColor { color: #76949C; }
<p style="color:#76949C">This sample text font color is #76949C.</p>
This text font color is #76949C.
.myBgColor { background-color: #76949C; }
<div style="background-color:#76949C">Inner text</div>
This div background color is #76949C.
.myBorderColor { border: 1px solid #76949C; }
<div style="border:3px solid #76949C">Div</div>
This div border color is #76949C.
.myOpacity80 { color: #76949C; opacity: 0.8; }
<p style="color:#76949C;opacity:0.8;">80%</p>
Text with #76949C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76949C;}
<p style="text-shadow: 3px 3px 1px #76949C">Text here.</p>
This text has shadow with #76949C color.
.textShadow {text-shadow: 3px 3px 1px #76949C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76949C, 5px 5px 20px red">Text here.</p>
This text has shadow with #76949C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76949C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76949C, Direction=45, Strength=4)">Text</p>
This text has shadow with #76949C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76949C; -webkit-box-shadow: 1px 1px 3px 2px #76949C; box-shadow: 1px 1px 3px 2px #76949C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76949C; -webkit-box-shadow: 1px 1px 3px 2px #76949C; box-shadow:1px 1px 3px 2px #76949C;">
Div content here</div>
This text has color #76949C on black background.
This text has color #76949C on white background.
This text has black color on #76949C background.
This text has white color on #76949C background.