HEX: #AEBC62
RGB: (174,188,98)
#AEBC62 contains mainly red and green colors. Web safe color of #AEBC62 is #99CC66 (or #9C6).
#AEBC62 color RGB value is (174,188,98).
RGB: (174,188,98) (68%,74%,38%)
R 174 of 255 = 68%
G 188 of 255 = 74%
B 98 of 255 = 38%
R + G + B ~ 60%. #AEBC62 is middle color (not dark and not light).
R + G + B =
174 + 188 + 98 = 460 (100%)
R 174 of 460 ~ 37.83%
G 188 of 460 ~ 40.87%
B 98 of 460 ~ 21.3%
#AEBC62 color CMYK value is (7,0,48,26).
CMYK: (7,0,48,26) C7M0Y48K26 (7%,0%,48%,26%) (0.07/0.00/0.48/0.26)
AE | BC | 62 | |
---|---|---|---|
RGB | 174 | 188 | 98 |
HSL | 69° | 40.18% | 56.08% |
HSB/HSV | 69° | 47.87% | 73.73% |
CMYK | 7.45% | 0.00% | 47.87% |
26.27% |
HEX | AE | BC | 62 |
Decimal | 174 | 188 | 98 |
Binary | 10101110 | 10111100 | 1100010 |
Octal | 256 | 274 | 142 |
Examples of css and html codes for elements with #AEBC62 color. Also use rgb(174,188,98) instead hex code.
.myTextColor { color: #AEBC62; }
<p style="color:#AEBC62">This sample text font color is #AEBC62.</p>
This text font color is #AEBC62.
.myBgColor { background-color: #AEBC62; }
<div style="background-color:#AEBC62">Inner text</div>
This div background color is #AEBC62.
.myBorderColor { border: 1px solid #AEBC62; }
<div style="border:3px solid #AEBC62">Div</div>
This div border color is #AEBC62.
.myOpacity80 { color: #AEBC62; opacity: 0.8; }
<p style="color:#AEBC62;opacity:0.8;">80%</p>
Text with #AEBC62 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEBC62;}
<p style="text-shadow: 3px 3px 1px #AEBC62">Text here.</p>
This text has shadow with #AEBC62 color.
.textShadow {text-shadow: 3px 3px 1px #AEBC62, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEBC62, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEBC62 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEBC62, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEBC62, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEBC62 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEBC62; -webkit-box-shadow: 1px 1px 3px 2px #AEBC62; box-shadow: 1px 1px 3px 2px #AEBC62; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEBC62; -webkit-box-shadow: 1px 1px 3px 2px #AEBC62; box-shadow:1px 1px 3px 2px #AEBC62;">
Div content here</div>
This text has color #AEBC62 on black background.
This text has color #AEBC62 on white background.
This text has black color on #AEBC62 background.
This text has white color on #AEBC62 background.