HEX: #A7C187
RGB: (167,193,135)
#A7C187 contains red, green and blue colors in about the same proportion. Web safe color of #A7C187 is #99CC99 (or #9C9).
#A7C187 color RGB value is (167,193,135).
RGB: (167,193,135) (65%,76%,53%)
R 167 of 255 = 65%
G 193 of 255 = 76%
B 135 of 255 = 53%
R + G + B ~ 65%. #A7C187 is quite light color.
R + G + B =
167 + 193 + 135 = 495 (100%)
R 167 of 495 ~ 33.74%
G 193 of 495 ~ 38.99%
B 135 of 495 ~ 27.27%
#A7C187 color CMYK value is (13,0,30,24).
CMYK: (13,0,30,24) C13M0Y30K24 (13%,0%,30%,24%) (0.13/0.00/0.30/0.24)
A7 | C1 | 87 | |
---|---|---|---|
RGB | 167 | 193 | 135 |
HSL | 87° | 31.87% | 64.31% |
HSB/HSV | 87° | 30.05% | 75.69% |
CMYK | 13.47% | 0.00% | 30.05% |
24.31% |
HEX | A7 | C1 | 87 |
Decimal | 167 | 193 | 135 |
Binary | 10100111 | 11000001 | 10000111 |
Octal | 247 | 301 | 207 |
Examples of css and html codes for elements with #A7C187 color. Also use rgb(167,193,135) instead hex code.
.myTextColor { color: #A7C187; }
<p style="color:#A7C187">This sample text font color is #A7C187.</p>
This text font color is #A7C187.
.myBgColor { background-color: #A7C187; }
<div style="background-color:#A7C187">Inner text</div>
This div background color is #A7C187.
.myBorderColor { border: 1px solid #A7C187; }
<div style="border:3px solid #A7C187">Div</div>
This div border color is #A7C187.
.myOpacity80 { color: #A7C187; opacity: 0.8; }
<p style="color:#A7C187;opacity:0.8;">80%</p>
Text with #A7C187 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7C187;}
<p style="text-shadow: 3px 3px 1px #A7C187">Text here.</p>
This text has shadow with #A7C187 color.
.textShadow {text-shadow: 3px 3px 1px #A7C187, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7C187, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7C187 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7C187, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7C187, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7C187 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7C187; -webkit-box-shadow: 1px 1px 3px 2px #A7C187; box-shadow: 1px 1px 3px 2px #A7C187; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7C187; -webkit-box-shadow: 1px 1px 3px 2px #A7C187; box-shadow:1px 1px 3px 2px #A7C187;">
Div content here</div>
This text has color #A7C187 on black background.
This text has color #A7C187 on white background.
This text has black color on #A7C187 background.
This text has white color on #A7C187 background.