HEX: #88B74F
RGB: (136,183,79)
#88B74F contains mainly red and green colors. Web safe color of #88B74F is #99CC66 (or #9C6).
#88B74F color RGB value is (136,183,79).
RGB: (136,183,79) (53%,72%,31%)
R 136 of 255 = 53%
G 183 of 255 = 72%
B 79 of 255 = 31%
R + G + B ~ 52%. #88B74F is middle color (not dark and not light).
R + G + B =
136 + 183 + 79 = 398 (100%)
R 136 of 398 ~ 34.17%
G 183 of 398 ~ 45.98%
B 79 of 398 ~ 19.85%
#88B74F color CMYK value is (26,0,57,28).
CMYK: (26,0,57,28) C26M0Y57K28 (26%,0%,57%,28%) (0.26/0.00/0.57/0.28)
88 | B7 | 4F | |
---|---|---|---|
RGB | 136 | 183 | 79 |
HSL | 87° | 41.94% | 51.37% |
HSB/HSV | 87° | 56.83% | 71.76% |
CMYK | 25.68% | 0.00% | 56.83% |
28.24% |
HEX | 88 | B7 | 4F |
Decimal | 136 | 183 | 79 |
Binary | 10001000 | 10110111 | 1001111 |
Octal | 210 | 267 | 117 |
Examples of css and html codes for elements with #88B74F color. Also use rgb(136,183,79) instead hex code.
.myTextColor { color: #88B74F; }
<p style="color:#88B74F">This sample text font color is #88B74F.</p>
This text font color is #88B74F.
.myBgColor { background-color: #88B74F; }
<div style="background-color:#88B74F">Inner text</div>
This div background color is #88B74F.
.myBorderColor { border: 1px solid #88B74F; }
<div style="border:3px solid #88B74F">Div</div>
This div border color is #88B74F.
.myOpacity80 { color: #88B74F; opacity: 0.8; }
<p style="color:#88B74F;opacity:0.8;">80%</p>
Text with #88B74F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88B74F;}
<p style="text-shadow: 3px 3px 1px #88B74F">Text here.</p>
This text has shadow with #88B74F color.
.textShadow {text-shadow: 3px 3px 1px #88B74F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88B74F, 5px 5px 20px red">Text here.</p>
This text has shadow with #88B74F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88B74F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88B74F, Direction=45, Strength=4)">Text</p>
This text has shadow with #88B74F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88B74F; -webkit-box-shadow: 1px 1px 3px 2px #88B74F; box-shadow: 1px 1px 3px 2px #88B74F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88B74F; -webkit-box-shadow: 1px 1px 3px 2px #88B74F; box-shadow:1px 1px 3px 2px #88B74F;">
Div content here</div>
This text has color #88B74F on black background.
This text has color #88B74F on white background.
This text has black color on #88B74F background.
This text has white color on #88B74F background.