HEX: #76AB6A
RGB: (118,171,106)
#76AB6A contains mainly red and green colors. Web safe color of #76AB6A is #669966 (or #696).
#76AB6A color RGB value is (118,171,106).
RGB: (118,171,106) (46%,67%,42%)
R 118 of 255 = 46%
G 171 of 255 = 67%
B 106 of 255 = 42%
R + G + B ~ 52%. #76AB6A is middle color (not dark and not light).
R + G + B =
118 + 171 + 106 = 395 (100%)
R 118 of 395 ~ 29.87%
G 171 of 395 ~ 43.29%
B 106 of 395 ~ 26.84%
#76AB6A color CMYK value is (31,0,38,33).
CMYK: (31,0,38,33) C31M0Y38K33 (31%,0%,38%,33%) (0.31/0.00/0.38/0.33)
76 | AB | 6A | |
---|---|---|---|
RGB | 118 | 171 | 106 |
HSL | 109° | 27.90% | 54.31% |
HSB/HSV | 109° | 38.01% | 67.06% |
CMYK | 30.99% | 0.00% | 38.01% |
32.94% |
HEX | 76 | AB | 6A |
Decimal | 118 | 171 | 106 |
Binary | 1110110 | 10101011 | 1101010 |
Octal | 166 | 253 | 152 |
Examples of css and html codes for elements with #76AB6A color. Also use rgb(118,171,106) instead hex code.
.myTextColor { color: #76AB6A; }
<p style="color:#76AB6A">This sample text font color is #76AB6A.</p>
This text font color is #76AB6A.
.myBgColor { background-color: #76AB6A; }
<div style="background-color:#76AB6A">Inner text</div>
This div background color is #76AB6A.
.myBorderColor { border: 1px solid #76AB6A; }
<div style="border:3px solid #76AB6A">Div</div>
This div border color is #76AB6A.
.myOpacity80 { color: #76AB6A; opacity: 0.8; }
<p style="color:#76AB6A;opacity:0.8;">80%</p>
Text with #76AB6A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76AB6A;}
<p style="text-shadow: 3px 3px 1px #76AB6A">Text here.</p>
This text has shadow with #76AB6A color.
.textShadow {text-shadow: 3px 3px 1px #76AB6A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76AB6A, 5px 5px 20px red">Text here.</p>
This text has shadow with #76AB6A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76AB6A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76AB6A, Direction=45, Strength=4)">Text</p>
This text has shadow with #76AB6A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76AB6A; -webkit-box-shadow: 1px 1px 3px 2px #76AB6A; box-shadow: 1px 1px 3px 2px #76AB6A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76AB6A; -webkit-box-shadow: 1px 1px 3px 2px #76AB6A; box-shadow:1px 1px 3px 2px #76AB6A;">
Div content here</div>
This text has color #76AB6A on black background.
This text has color #76AB6A on white background.
This text has black color on #76AB6A background.
This text has white color on #76AB6A background.