HEX: #AECC6A
RGB: (174,204,106)
#AECC6A contains mainly red and green colors. Web safe color of #AECC6A is #99CC66 (or #9C6).
#AECC6A color RGB value is (174,204,106).
RGB: (174,204,106) (68%,80%,42%)
R 174 of 255 = 68%
G 204 of 255 = 80%
B 106 of 255 = 42%
R + G + B ~ 63%. #AECC6A is quite light color.
R + G + B =
174 + 204 + 106 = 484 (100%)
R 174 of 484 ~ 35.95%
G 204 of 484 ~ 42.15%
B 106 of 484 ~ 21.9%
#AECC6A color CMYK value is (15,0,48,20).
CMYK: (15,0,48,20) C15M0Y48K20 (15%,0%,48%,20%) (0.15/0.00/0.48/0.20)
AE | CC | 6A | |
---|---|---|---|
RGB | 174 | 204 | 106 |
HSL | 78° | 49.00% | 60.78% |
HSB/HSV | 78° | 48.04% | 80.00% |
CMYK | 14.71% | 0.00% | 48.04% |
20.00% |
HEX | AE | CC | 6A |
Decimal | 174 | 204 | 106 |
Binary | 10101110 | 11001100 | 1101010 |
Octal | 256 | 314 | 152 |
Examples of css and html codes for elements with #AECC6A color. Also use rgb(174,204,106) instead hex code.
.myTextColor { color: #AECC6A; }
<p style="color:#AECC6A">This sample text font color is #AECC6A.</p>
This text font color is #AECC6A.
.myBgColor { background-color: #AECC6A; }
<div style="background-color:#AECC6A">Inner text</div>
This div background color is #AECC6A.
.myBorderColor { border: 1px solid #AECC6A; }
<div style="border:3px solid #AECC6A">Div</div>
This div border color is #AECC6A.
.myOpacity80 { color: #AECC6A; opacity: 0.8; }
<p style="color:#AECC6A;opacity:0.8;">80%</p>
Text with #AECC6A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AECC6A;}
<p style="text-shadow: 3px 3px 1px #AECC6A">Text here.</p>
This text has shadow with #AECC6A color.
.textShadow {text-shadow: 3px 3px 1px #AECC6A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AECC6A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AECC6A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AECC6A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AECC6A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AECC6A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AECC6A; -webkit-box-shadow: 1px 1px 3px 2px #AECC6A; box-shadow: 1px 1px 3px 2px #AECC6A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AECC6A; -webkit-box-shadow: 1px 1px 3px 2px #AECC6A; box-shadow:1px 1px 3px 2px #AECC6A;">
Div content here</div>
This text has color #AECC6A on black background.
This text has color #AECC6A on white background.
This text has black color on #AECC6A background.
This text has white color on #AECC6A background.