HEX: #76AD63
RGB: (118,173,99)
#76AD63 contains mainly red and green colors. Web safe color of #76AD63 is #669966 (or #696).
#76AD63 color RGB value is (118,173,99).
RGB: (118,173,99) (46%,68%,39%)
R 118 of 255 = 46%
G 173 of 255 = 68%
B 99 of 255 = 39%
R + G + B ~ 51%. #76AD63 is middle color (not dark and not light).
R + G + B =
118 + 173 + 99 = 390 (100%)
R 118 of 390 ~ 30.26%
G 173 of 390 ~ 44.36%
B 99 of 390 ~ 25.38%
#76AD63 color CMYK value is (32,0,43,32).
CMYK: (32,0,43,32) C32M0Y43K32 (32%,0%,43%,32%) (0.32/0.00/0.43/0.32)
76 | AD | 63 | |
---|---|---|---|
RGB | 118 | 173 | 99 |
HSL | 105° | 31.09% | 53.33% |
HSB/HSV | 105° | 42.77% | 67.84% |
CMYK | 31.79% | 0.00% | 42.77% |
32.16% |
HEX | 76 | AD | 63 |
Decimal | 118 | 173 | 99 |
Binary | 1110110 | 10101101 | 1100011 |
Octal | 166 | 255 | 143 |
Examples of css and html codes for elements with #76AD63 color. Also use rgb(118,173,99) instead hex code.
.myTextColor { color: #76AD63; }
<p style="color:#76AD63">This sample text font color is #76AD63.</p>
This text font color is #76AD63.
.myBgColor { background-color: #76AD63; }
<div style="background-color:#76AD63">Inner text</div>
This div background color is #76AD63.
.myBorderColor { border: 1px solid #76AD63; }
<div style="border:3px solid #76AD63">Div</div>
This div border color is #76AD63.
.myOpacity80 { color: #76AD63; opacity: 0.8; }
<p style="color:#76AD63;opacity:0.8;">80%</p>
Text with #76AD63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76AD63;}
<p style="text-shadow: 3px 3px 1px #76AD63">Text here.</p>
This text has shadow with #76AD63 color.
.textShadow {text-shadow: 3px 3px 1px #76AD63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76AD63, 5px 5px 20px red">Text here.</p>
This text has shadow with #76AD63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76AD63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76AD63, Direction=45, Strength=4)">Text</p>
This text has shadow with #76AD63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76AD63; -webkit-box-shadow: 1px 1px 3px 2px #76AD63; box-shadow: 1px 1px 3px 2px #76AD63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76AD63; -webkit-box-shadow: 1px 1px 3px 2px #76AD63; box-shadow:1px 1px 3px 2px #76AD63;">
Div content here</div>
This text has color #76AD63 on black background.
This text has color #76AD63 on white background.
This text has black color on #76AD63 background.
This text has white color on #76AD63 background.