HEX: #A7E178
RGB: (167,225,120)
#A7E178 contains mainly red and green colors. Web safe color of #A7E178 is #99CC66 (or #9C6).
#A7E178 color RGB value is (167,225,120).
RGB: (167,225,120) (65%,88%,47%)
R 167 of 255 = 65%
G 225 of 255 = 88%
B 120 of 255 = 47%
R + G + B ~ 67%. #A7E178 is quite light color.
R + G + B =
167 + 225 + 120 = 512 (100%)
R 167 of 512 ~ 32.62%
G 225 of 512 ~ 43.95%
B 120 of 512 ~ 23.44%
#A7E178 color CMYK value is (26,0,47,12).
CMYK: (26,0,47,12) C26M0Y47K12 (26%,0%,47%,12%) (0.26/0.00/0.47/0.12)
A7 | E1 | 78 | |
---|---|---|---|
RGB | 167 | 225 | 120 |
HSL | 93° | 63.64% | 67.65% |
HSB/HSV | 93° | 46.67% | 88.24% |
CMYK | 25.78% | 0.00% | 46.67% |
11.76% |
HEX | A7 | E1 | 78 |
Decimal | 167 | 225 | 120 |
Binary | 10100111 | 11100001 | 1111000 |
Octal | 247 | 341 | 170 |
Examples of css and html codes for elements with #A7E178 color. Also use rgb(167,225,120) instead hex code.
.myTextColor { color: #A7E178; }
<p style="color:#A7E178">This sample text font color is #A7E178.</p>
This text font color is #A7E178.
.myBgColor { background-color: #A7E178; }
<div style="background-color:#A7E178">Inner text</div>
This div background color is #A7E178.
.myBorderColor { border: 1px solid #A7E178; }
<div style="border:3px solid #A7E178">Div</div>
This div border color is #A7E178.
.myOpacity80 { color: #A7E178; opacity: 0.8; }
<p style="color:#A7E178;opacity:0.8;">80%</p>
Text with #A7E178 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7E178;}
<p style="text-shadow: 3px 3px 1px #A7E178">Text here.</p>
This text has shadow with #A7E178 color.
.textShadow {text-shadow: 3px 3px 1px #A7E178, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7E178, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7E178 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7E178, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7E178, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7E178 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7E178; -webkit-box-shadow: 1px 1px 3px 2px #A7E178; box-shadow: 1px 1px 3px 2px #A7E178; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7E178; -webkit-box-shadow: 1px 1px 3px 2px #A7E178; box-shadow:1px 1px 3px 2px #A7E178;">
Div content here</div>
This text has color #A7E178 on black background.
This text has color #A7E178 on white background.
This text has black color on #A7E178 background.
This text has white color on #A7E178 background.