HEX: #A7F67D
RGB: (167,246,125)
#A7F67D contains mainly green color. Web safe color of #A7F67D is #99FF66 (or #9F6).
#A7F67D color RGB value is (167,246,125).
RGB: (167,246,125) (65%,96%,49%)
R 167 of 255 = 65%
G 246 of 255 = 96%
B 125 of 255 = 49%
R + G + B ~ 70%. #A7F67D is quite light color.
R + G + B =
167 + 246 + 125 = 538 (100%)
R 167 of 538 ~ 31.04%
G 246 of 538 ~ 45.72%
B 125 of 538 ~ 23.23%
#A7F67D color CMYK value is (32,0,49,4).
CMYK: (32,0,49,4) C32M0Y49K4 (32%,0%,49%,4%) (0.32/0.00/0.49/0.04)
A7 | F6 | 7D | |
---|---|---|---|
RGB | 167 | 246 | 125 |
HSL | 99° | 87.05% | 72.75% |
HSB/HSV | 99° | 49.19% | 96.47% |
CMYK | 32.11% | 0.00% | 49.19% |
3.53% |
HEX | A7 | F6 | 7D |
Decimal | 167 | 246 | 125 |
Binary | 10100111 | 11110110 | 1111101 |
Octal | 247 | 366 | 175 |
Examples of css and html codes for elements with #A7F67D color. Also use rgb(167,246,125) instead hex code.
.myTextColor { color: #A7F67D; }
<p style="color:#A7F67D">This sample text font color is #A7F67D.</p>
This text font color is #A7F67D.
.myBgColor { background-color: #A7F67D; }
<div style="background-color:#A7F67D">Inner text</div>
This div background color is #A7F67D.
.myBorderColor { border: 1px solid #A7F67D; }
<div style="border:3px solid #A7F67D">Div</div>
This div border color is #A7F67D.
.myOpacity80 { color: #A7F67D; opacity: 0.8; }
<p style="color:#A7F67D;opacity:0.8;">80%</p>
Text with #A7F67D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7F67D;}
<p style="text-shadow: 3px 3px 1px #A7F67D">Text here.</p>
This text has shadow with #A7F67D color.
.textShadow {text-shadow: 3px 3px 1px #A7F67D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7F67D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7F67D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7F67D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7F67D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7F67D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7F67D; -webkit-box-shadow: 1px 1px 3px 2px #A7F67D; box-shadow: 1px 1px 3px 2px #A7F67D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7F67D; -webkit-box-shadow: 1px 1px 3px 2px #A7F67D; box-shadow:1px 1px 3px 2px #A7F67D;">
Div content here</div>
This text has color #A7F67D on black background.
This text has color #A7F67D on white background.
This text has black color on #A7F67D background.
This text has white color on #A7F67D background.