HEX: #76AF53
RGB: (118,175,83)
#76AF53 contains mainly red and green colors. Web safe color of #76AF53 is #669966 (or #696).
#76AF53 color RGB value is (118,175,83).
RGB: (118,175,83) (46%,69%,33%)
R 118 of 255 = 46%
G 175 of 255 = 69%
B 83 of 255 = 33%
R + G + B ~ 49%. #76AF53 is middle color (not dark and not light).
R + G + B =
118 + 175 + 83 = 376 (100%)
R 118 of 376 ~ 31.38%
G 175 of 376 ~ 46.54%
B 83 of 376 ~ 22.07%
#76AF53 color CMYK value is (33,0,53,31).
CMYK: (33,0,53,31) C33M0Y53K31 (33%,0%,53%,31%) (0.33/0.00/0.53/0.31)
76 | AF | 53 | |
---|---|---|---|
RGB | 118 | 175 | 83 |
HSL | 97° | 36.51% | 50.59% |
HSB/HSV | 97° | 52.57% | 68.63% |
CMYK | 32.57% | 0.00% | 52.57% |
31.37% |
HEX | 76 | AF | 53 |
Decimal | 118 | 175 | 83 |
Binary | 1110110 | 10101111 | 1010011 |
Octal | 166 | 257 | 123 |
Examples of css and html codes for elements with #76AF53 color. Also use rgb(118,175,83) instead hex code.
.myTextColor { color: #76AF53; }
<p style="color:#76AF53">This sample text font color is #76AF53.</p>
This text font color is #76AF53.
.myBgColor { background-color: #76AF53; }
<div style="background-color:#76AF53">Inner text</div>
This div background color is #76AF53.
.myBorderColor { border: 1px solid #76AF53; }
<div style="border:3px solid #76AF53">Div</div>
This div border color is #76AF53.
.myOpacity80 { color: #76AF53; opacity: 0.8; }
<p style="color:#76AF53;opacity:0.8;">80%</p>
Text with #76AF53 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76AF53;}
<p style="text-shadow: 3px 3px 1px #76AF53">Text here.</p>
This text has shadow with #76AF53 color.
.textShadow {text-shadow: 3px 3px 1px #76AF53, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76AF53, 5px 5px 20px red">Text here.</p>
This text has shadow with #76AF53 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76AF53, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76AF53, Direction=45, Strength=4)">Text</p>
This text has shadow with #76AF53 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76AF53; -webkit-box-shadow: 1px 1px 3px 2px #76AF53; box-shadow: 1px 1px 3px 2px #76AF53; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76AF53; -webkit-box-shadow: 1px 1px 3px 2px #76AF53; box-shadow:1px 1px 3px 2px #76AF53;">
Div content here</div>
This text has color #76AF53 on black background.
This text has color #76AF53 on white background.
This text has black color on #76AF53 background.
This text has white color on #76AF53 background.