HEX: #76A553
RGB: (118,165,83)
#76A553 contains mainly red and green colors. Web safe color of #76A553 is #669966 (or #696).
#76A553 color RGB value is (118,165,83).
RGB: (118,165,83) (46%,65%,33%)
R 118 of 255 = 46%
G 165 of 255 = 65%
B 83 of 255 = 33%
R + G + B ~ 48%. #76A553 is middle color (not dark and not light).
R + G + B =
118 + 165 + 83 = 366 (100%)
R 118 of 366 ~ 32.24%
G 165 of 366 ~ 45.08%
B 83 of 366 ~ 22.68%
#76A553 color CMYK value is (28,0,50,35).
CMYK: (28,0,50,35) C28M0Y50K35 (28%,0%,50%,35%) (0.28/0.00/0.50/0.35)
76 | A5 | 53 | |
---|---|---|---|
RGB | 118 | 165 | 83 |
HSL | 94° | 33.06% | 48.63% |
HSB/HSV | 94° | 49.70% | 64.71% |
CMYK | 28.48% | 0.00% | 49.70% |
35.29% |
HEX | 76 | A5 | 53 |
Decimal | 118 | 165 | 83 |
Binary | 1110110 | 10100101 | 1010011 |
Octal | 166 | 245 | 123 |
Examples of css and html codes for elements with #76A553 color. Also use rgb(118,165,83) instead hex code.
.myTextColor { color: #76A553; }
<p style="color:#76A553">This sample text font color is #76A553.</p>
This text font color is #76A553.
.myBgColor { background-color: #76A553; }
<div style="background-color:#76A553">Inner text</div>
This div background color is #76A553.
.myBorderColor { border: 1px solid #76A553; }
<div style="border:3px solid #76A553">Div</div>
This div border color is #76A553.
.myOpacity80 { color: #76A553; opacity: 0.8; }
<p style="color:#76A553;opacity:0.8;">80%</p>
Text with #76A553 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76A553;}
<p style="text-shadow: 3px 3px 1px #76A553">Text here.</p>
This text has shadow with #76A553 color.
.textShadow {text-shadow: 3px 3px 1px #76A553, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76A553, 5px 5px 20px red">Text here.</p>
This text has shadow with #76A553 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76A553, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76A553, Direction=45, Strength=4)">Text</p>
This text has shadow with #76A553 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76A553; -webkit-box-shadow: 1px 1px 3px 2px #76A553; box-shadow: 1px 1px 3px 2px #76A553; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76A553; -webkit-box-shadow: 1px 1px 3px 2px #76A553; box-shadow:1px 1px 3px 2px #76A553;">
Div content here</div>
This text has color #76A553 on black background.
This text has color #76A553 on white background.
This text has black color on #76A553 background.
This text has white color on #76A553 background.