HEX: #76B09D
RGB: (118,176,157)
#76B09D contains red, green and blue colors in about the same proportion. Web safe color of #76B09D is #669999 (or #699).
#76B09D color RGB value is (118,176,157).
RGB: (118,176,157) (46%,69%,62%)
R 118 of 255 = 46%
G 176 of 255 = 69%
B 157 of 255 = 62%
R + G + B ~ 59%. #76B09D is middle color (not dark and not light).
R + G + B =
118 + 176 + 157 = 451 (100%)
R 118 of 451 ~ 26.16%
G 176 of 451 ~ 39.02%
B 157 of 451 ~ 34.81%
#76B09D color CMYK value is (33,0,11,31).
CMYK: (33,0,11,31) C33M0Y11K31 (33%,0%,11%,31%) (0.33/0.00/0.11/0.31)
76 | B0 | 9D | |
---|---|---|---|
RGB | 118 | 176 | 157 |
HSL | 160° | 26.85% | 57.65% |
HSB/HSV | 160° | 32.95% | 69.02% |
CMYK | 32.95% | 0.00% | 10.80% |
30.98% |
HEX | 76 | B0 | 9D |
Decimal | 118 | 176 | 157 |
Binary | 1110110 | 10110000 | 10011101 |
Octal | 166 | 260 | 235 |
Examples of css and html codes for elements with #76B09D color. Also use rgb(118,176,157) instead hex code.
.myTextColor { color: #76B09D; }
<p style="color:#76B09D">This sample text font color is #76B09D.</p>
This text font color is #76B09D.
.myBgColor { background-color: #76B09D; }
<div style="background-color:#76B09D">Inner text</div>
This div background color is #76B09D.
.myBorderColor { border: 1px solid #76B09D; }
<div style="border:3px solid #76B09D">Div</div>
This div border color is #76B09D.
.myOpacity80 { color: #76B09D; opacity: 0.8; }
<p style="color:#76B09D;opacity:0.8;">80%</p>
Text with #76B09D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76B09D;}
<p style="text-shadow: 3px 3px 1px #76B09D">Text here.</p>
This text has shadow with #76B09D color.
.textShadow {text-shadow: 3px 3px 1px #76B09D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76B09D, 5px 5px 20px red">Text here.</p>
This text has shadow with #76B09D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76B09D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76B09D, Direction=45, Strength=4)">Text</p>
This text has shadow with #76B09D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76B09D; -webkit-box-shadow: 1px 1px 3px 2px #76B09D; box-shadow: 1px 1px 3px 2px #76B09D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76B09D; -webkit-box-shadow: 1px 1px 3px 2px #76B09D; box-shadow:1px 1px 3px 2px #76B09D;">
Div content here</div>
This text has color #76B09D on black background.
This text has color #76B09D on white background.
This text has black color on #76B09D background.
This text has white color on #76B09D background.