HEX: #76C3AA
RGB: (118,195,170)
#76C3AA contains mainly green and blue colors. Web safe color of #76C3AA is #66CC99 (or #6C9).
#76C3AA color RGB value is (118,195,170).
RGB: (118,195,170) (46%,76%,67%)
R 118 of 255 = 46%
G 195 of 255 = 76%
B 170 of 255 = 67%
R + G + B ~ 63%. #76C3AA is quite light color.
R + G + B =
118 + 195 + 170 = 483 (100%)
R 118 of 483 ~ 24.43%
G 195 of 483 ~ 40.37%
B 170 of 483 ~ 35.2%
#76C3AA color CMYK value is (39,0,13,24).
CMYK: (39,0,13,24) C39M0Y13K24 (39%,0%,13%,24%) (0.39/0.00/0.13/0.24)
76 | C3 | AA | |
---|---|---|---|
RGB | 118 | 195 | 170 |
HSL | 161° | 39.09% | 61.37% |
HSB/HSV | 161° | 39.49% | 76.47% |
CMYK | 39.49% | 0.00% | 12.82% |
23.53% |
HEX | 76 | C3 | AA |
Decimal | 118 | 195 | 170 |
Binary | 1110110 | 11000011 | 10101010 |
Octal | 166 | 303 | 252 |
Examples of css and html codes for elements with #76C3AA color. Also use rgb(118,195,170) instead hex code.
.myTextColor { color: #76C3AA; }
<p style="color:#76C3AA">This sample text font color is #76C3AA.</p>
This text font color is #76C3AA.
.myBgColor { background-color: #76C3AA; }
<div style="background-color:#76C3AA">Inner text</div>
This div background color is #76C3AA.
.myBorderColor { border: 1px solid #76C3AA; }
<div style="border:3px solid #76C3AA">Div</div>
This div border color is #76C3AA.
.myOpacity80 { color: #76C3AA; opacity: 0.8; }
<p style="color:#76C3AA;opacity:0.8;">80%</p>
Text with #76C3AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76C3AA;}
<p style="text-shadow: 3px 3px 1px #76C3AA">Text here.</p>
This text has shadow with #76C3AA color.
.textShadow {text-shadow: 3px 3px 1px #76C3AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76C3AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #76C3AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76C3AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76C3AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #76C3AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76C3AA; -webkit-box-shadow: 1px 1px 3px 2px #76C3AA; box-shadow: 1px 1px 3px 2px #76C3AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76C3AA; -webkit-box-shadow: 1px 1px 3px 2px #76C3AA; box-shadow:1px 1px 3px 2px #76C3AA;">
Div content here</div>
This text has color #76C3AA on black background.
This text has color #76C3AA on white background.
This text has black color on #76C3AA background.
This text has white color on #76C3AA background.