HEX: #A6E2AC
RGB: (166,226,172)
#A6E2AC contains mainly green and blue colors. Web safe color of #A6E2AC is #99CC99 (or #9C9).
#A6E2AC color RGB value is (166,226,172).
RGB: (166,226,172) (65%,89%,67%)
R 166 of 255 = 65%
G 226 of 255 = 89%
B 172 of 255 = 67%
R + G + B ~ 74%. #A6E2AC is quite light color.
R + G + B =
166 + 226 + 172 = 564 (100%)
R 166 of 564 ~ 29.43%
G 226 of 564 ~ 40.07%
B 172 of 564 ~ 30.5%
#A6E2AC color CMYK value is (27,0,24,11).
CMYK: (27,0,24,11) C27M0Y24K11 (27%,0%,24%,11%) (0.27/0.00/0.24/0.11)
A6 | E2 | AC | |
---|---|---|---|
RGB | 166 | 226 | 172 |
HSL | 126° | 50.85% | 76.86% |
HSB/HSV | 126° | 26.55% | 88.63% |
CMYK | 26.55% | 0.00% | 23.89% |
11.37% |
HEX | A6 | E2 | AC |
Decimal | 166 | 226 | 172 |
Binary | 10100110 | 11100010 | 10101100 |
Octal | 246 | 342 | 254 |
Examples of css and html codes for elements with #A6E2AC color. Also use rgb(166,226,172) instead hex code.
.myTextColor { color: #A6E2AC; }
<p style="color:#A6E2AC">This sample text font color is #A6E2AC.</p>
This text font color is #A6E2AC.
.myBgColor { background-color: #A6E2AC; }
<div style="background-color:#A6E2AC">Inner text</div>
This div background color is #A6E2AC.
.myBorderColor { border: 1px solid #A6E2AC; }
<div style="border:3px solid #A6E2AC">Div</div>
This div border color is #A6E2AC.
.myOpacity80 { color: #A6E2AC; opacity: 0.8; }
<p style="color:#A6E2AC;opacity:0.8;">80%</p>
Text with #A6E2AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6E2AC;}
<p style="text-shadow: 3px 3px 1px #A6E2AC">Text here.</p>
This text has shadow with #A6E2AC color.
.textShadow {text-shadow: 3px 3px 1px #A6E2AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6E2AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6E2AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6E2AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6E2AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6E2AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6E2AC; -webkit-box-shadow: 1px 1px 3px 2px #A6E2AC; box-shadow: 1px 1px 3px 2px #A6E2AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6E2AC; -webkit-box-shadow: 1px 1px 3px 2px #A6E2AC; box-shadow:1px 1px 3px 2px #A6E2AC;">
Div content here</div>
This text has color #A6E2AC on black background.
This text has color #A6E2AC on white background.
This text has black color on #A6E2AC background.
This text has white color on #A6E2AC background.