HEX: #A6E76F
RGB: (166,231,111)
#A6E76F contains mainly green color. Web safe color of #A6E76F is #99FF66 (or #9F6).
#A6E76F color RGB value is (166,231,111).
RGB: (166,231,111) (65%,91%,44%)
R 166 of 255 = 65%
G 231 of 255 = 91%
B 111 of 255 = 44%
R + G + B ~ 67%. #A6E76F is quite light color.
R + G + B =
166 + 231 + 111 = 508 (100%)
R 166 of 508 ~ 32.68%
G 231 of 508 ~ 45.47%
B 111 of 508 ~ 21.85%
#A6E76F color CMYK value is (28,0,52,9).
CMYK: (28,0,52,9) C28M0Y52K9 (28%,0%,52%,9%) (0.28/0.00/0.52/0.09)
A6 | E7 | 6F | |
---|---|---|---|
RGB | 166 | 231 | 111 |
HSL | 93° | 71.43% | 67.06% |
HSB/HSV | 93° | 51.95% | 90.59% |
CMYK | 28.14% | 0.00% | 51.95% |
9.41% |
HEX | A6 | E7 | 6F |
Decimal | 166 | 231 | 111 |
Binary | 10100110 | 11100111 | 1101111 |
Octal | 246 | 347 | 157 |
Examples of css and html codes for elements with #A6E76F color. Also use rgb(166,231,111) instead hex code.
.myTextColor { color: #A6E76F; }
<p style="color:#A6E76F">This sample text font color is #A6E76F.</p>
This text font color is #A6E76F.
.myBgColor { background-color: #A6E76F; }
<div style="background-color:#A6E76F">Inner text</div>
This div background color is #A6E76F.
.myBorderColor { border: 1px solid #A6E76F; }
<div style="border:3px solid #A6E76F">Div</div>
This div border color is #A6E76F.
.myOpacity80 { color: #A6E76F; opacity: 0.8; }
<p style="color:#A6E76F;opacity:0.8;">80%</p>
Text with #A6E76F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6E76F;}
<p style="text-shadow: 3px 3px 1px #A6E76F">Text here.</p>
This text has shadow with #A6E76F color.
.textShadow {text-shadow: 3px 3px 1px #A6E76F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6E76F, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6E76F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6E76F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6E76F, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6E76F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6E76F; -webkit-box-shadow: 1px 1px 3px 2px #A6E76F; box-shadow: 1px 1px 3px 2px #A6E76F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6E76F; -webkit-box-shadow: 1px 1px 3px 2px #A6E76F; box-shadow:1px 1px 3px 2px #A6E76F;">
Div content here</div>
This text has color #A6E76F on black background.
This text has color #A6E76F on white background.
This text has black color on #A6E76F background.
This text has white color on #A6E76F background.