HEX: #A6C463
RGB: (166,196,99)
#A6C463 contains mainly red and green colors. Web safe color of #A6C463 is #99CC66 (or #9C6).
#A6C463 color RGB value is (166,196,99).
RGB: (166,196,99) (65%,77%,39%)
R 166 of 255 = 65%
G 196 of 255 = 77%
B 99 of 255 = 39%
R + G + B ~ 60%. #A6C463 is middle color (not dark and not light).
R + G + B =
166 + 196 + 99 = 461 (100%)
R 166 of 461 ~ 36.01%
G 196 of 461 ~ 42.52%
B 99 of 461 ~ 21.48%
#A6C463 color CMYK value is (15,0,49,23).
CMYK: (15,0,49,23) C15M0Y49K23 (15%,0%,49%,23%) (0.15/0.00/0.49/0.23)
A6 | C4 | 63 | |
---|---|---|---|
RGB | 166 | 196 | 99 |
HSL | 79° | 45.12% | 57.84% |
HSB/HSV | 79° | 49.49% | 76.86% |
CMYK | 15.31% | 0.00% | 49.49% |
23.14% |
HEX | A6 | C4 | 63 |
Decimal | 166 | 196 | 99 |
Binary | 10100110 | 11000100 | 1100011 |
Octal | 246 | 304 | 143 |
Examples of css and html codes for elements with #A6C463 color. Also use rgb(166,196,99) instead hex code.
.myTextColor { color: #A6C463; }
<p style="color:#A6C463">This sample text font color is #A6C463.</p>
This text font color is #A6C463.
.myBgColor { background-color: #A6C463; }
<div style="background-color:#A6C463">Inner text</div>
This div background color is #A6C463.
.myBorderColor { border: 1px solid #A6C463; }
<div style="border:3px solid #A6C463">Div</div>
This div border color is #A6C463.
.myOpacity80 { color: #A6C463; opacity: 0.8; }
<p style="color:#A6C463;opacity:0.8;">80%</p>
Text with #A6C463 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6C463;}
<p style="text-shadow: 3px 3px 1px #A6C463">Text here.</p>
This text has shadow with #A6C463 color.
.textShadow {text-shadow: 3px 3px 1px #A6C463, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6C463, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6C463 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6C463, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6C463, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6C463 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6C463; -webkit-box-shadow: 1px 1px 3px 2px #A6C463; box-shadow: 1px 1px 3px 2px #A6C463; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6C463; -webkit-box-shadow: 1px 1px 3px 2px #A6C463; box-shadow:1px 1px 3px 2px #A6C463;">
Div content here</div>
This text has color #A6C463 on black background.
This text has color #A6C463 on white background.
This text has black color on #A6C463 background.
This text has white color on #A6C463 background.