HEX: #AEB44F
RGB: (174,180,79)
#AEB44F contains mainly red and green colors. Web safe color of #AEB44F is #99CC66 (or #9C6).
#AEB44F color RGB value is (174,180,79).
RGB: (174,180,79) (68%,71%,31%)
R 174 of 255 = 68%
G 180 of 255 = 71%
B 79 of 255 = 31%
R + G + B ~ 57%. #AEB44F is middle color (not dark and not light).
R + G + B =
174 + 180 + 79 = 433 (100%)
R 174 of 433 ~ 40.18%
G 180 of 433 ~ 41.57%
B 79 of 433 ~ 18.24%
#AEB44F color CMYK value is (3,0,56,29).
CMYK: (3,0,56,29) C3M0Y56K29 (3%,0%,56%,29%) (0.03/0.00/0.56/0.29)
AE | B4 | 4F | |
---|---|---|---|
RGB | 174 | 180 | 79 |
HSL | 64° | 40.24% | 50.78% |
HSB/HSV | 64° | 56.11% | 70.59% |
CMYK | 3.33% | 0.00% | 56.11% |
29.41% |
HEX | AE | B4 | 4F |
Decimal | 174 | 180 | 79 |
Binary | 10101110 | 10110100 | 1001111 |
Octal | 256 | 264 | 117 |
Examples of css and html codes for elements with #AEB44F color. Also use rgb(174,180,79) instead hex code.
.myTextColor { color: #AEB44F; }
<p style="color:#AEB44F">This sample text font color is #AEB44F.</p>
This text font color is #AEB44F.
.myBgColor { background-color: #AEB44F; }
<div style="background-color:#AEB44F">Inner text</div>
This div background color is #AEB44F.
.myBorderColor { border: 1px solid #AEB44F; }
<div style="border:3px solid #AEB44F">Div</div>
This div border color is #AEB44F.
.myOpacity80 { color: #AEB44F; opacity: 0.8; }
<p style="color:#AEB44F;opacity:0.8;">80%</p>
Text with #AEB44F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB44F;}
<p style="text-shadow: 3px 3px 1px #AEB44F">Text here.</p>
This text has shadow with #AEB44F color.
.textShadow {text-shadow: 3px 3px 1px #AEB44F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB44F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB44F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB44F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB44F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB44F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB44F; -webkit-box-shadow: 1px 1px 3px 2px #AEB44F; box-shadow: 1px 1px 3px 2px #AEB44F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB44F; -webkit-box-shadow: 1px 1px 3px 2px #AEB44F; box-shadow:1px 1px 3px 2px #AEB44F;">
Div content here</div>
This text has color #AEB44F on black background.
This text has color #AEB44F on white background.
This text has black color on #AEB44F background.
This text has white color on #AEB44F background.