HEX: #87B484
RGB: (135,180,132)
#87B484 contains red, green and blue colors in about the same proportion. Web safe color of #87B484 is #99CC99 (or #9C9).
#87B484 color RGB value is (135,180,132).
RGB: (135,180,132) (53%,71%,52%)
R 135 of 255 = 53%
G 180 of 255 = 71%
B 132 of 255 = 52%
R + G + B ~ 59%. #87B484 is middle color (not dark and not light).
R + G + B =
135 + 180 + 132 = 447 (100%)
R 135 of 447 ~ 30.2%
G 180 of 447 ~ 40.27%
B 132 of 447 ~ 29.53%
#87B484 color CMYK value is (25,0,27,29).
CMYK: (25,0,27,29) C25M0Y27K29 (25%,0%,27%,29%) (0.25/0.00/0.27/0.29)
87 | B4 | 84 | |
---|---|---|---|
RGB | 135 | 180 | 132 |
HSL | 116° | 24.24% | 61.18% |
HSB/HSV | 116° | 26.67% | 70.59% |
CMYK | 25.00% | 0.00% | 26.67% |
29.41% |
HEX | 87 | B4 | 84 |
Decimal | 135 | 180 | 132 |
Binary | 10000111 | 10110100 | 10000100 |
Octal | 207 | 264 | 204 |
Examples of css and html codes for elements with #87B484 color. Also use rgb(135,180,132) instead hex code.
.myTextColor { color: #87B484; }
<p style="color:#87B484">This sample text font color is #87B484.</p>
This text font color is #87B484.
.myBgColor { background-color: #87B484; }
<div style="background-color:#87B484">Inner text</div>
This div background color is #87B484.
.myBorderColor { border: 1px solid #87B484; }
<div style="border:3px solid #87B484">Div</div>
This div border color is #87B484.
.myOpacity80 { color: #87B484; opacity: 0.8; }
<p style="color:#87B484;opacity:0.8;">80%</p>
Text with #87B484 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87B484;}
<p style="text-shadow: 3px 3px 1px #87B484">Text here.</p>
This text has shadow with #87B484 color.
.textShadow {text-shadow: 3px 3px 1px #87B484, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87B484, 5px 5px 20px red">Text here.</p>
This text has shadow with #87B484 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87B484, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87B484, Direction=45, Strength=4)">Text</p>
This text has shadow with #87B484 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87B484; -webkit-box-shadow: 1px 1px 3px 2px #87B484; box-shadow: 1px 1px 3px 2px #87B484; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87B484; -webkit-box-shadow: 1px 1px 3px 2px #87B484; box-shadow:1px 1px 3px 2px #87B484;">
Div content here</div>
This text has color #87B484 on black background.
This text has color #87B484 on white background.
This text has black color on #87B484 background.
This text has white color on #87B484 background.