HEX: #AEBD59
RGB: (174,189,89)
#AEBD59 contains mainly red and green colors. Web safe color of #AEBD59 is #99CC66 (or #9C6).
#AEBD59 color RGB value is (174,189,89).
RGB: (174,189,89) (68%,74%,35%)
R 174 of 255 = 68%
G 189 of 255 = 74%
B 89 of 255 = 35%
R + G + B ~ 59%. #AEBD59 is middle color (not dark and not light).
R + G + B =
174 + 189 + 89 = 452 (100%)
R 174 of 452 ~ 38.5%
G 189 of 452 ~ 41.81%
B 89 of 452 ~ 19.69%
#AEBD59 color CMYK value is (8,0,53,26).
CMYK: (8,0,53,26) C8M0Y53K26 (8%,0%,53%,26%) (0.08/0.00/0.53/0.26)
AE | BD | 59 | |
---|---|---|---|
RGB | 174 | 189 | 89 |
HSL | 69° | 43.10% | 54.51% |
HSB/HSV | 69° | 52.91% | 74.12% |
CMYK | 7.94% | 0.00% | 52.91% |
25.88% |
HEX | AE | BD | 59 |
Decimal | 174 | 189 | 89 |
Binary | 10101110 | 10111101 | 1011001 |
Octal | 256 | 275 | 131 |
Examples of css and html codes for elements with #AEBD59 color. Also use rgb(174,189,89) instead hex code.
.myTextColor { color: #AEBD59; }
<p style="color:#AEBD59">This sample text font color is #AEBD59.</p>
This text font color is #AEBD59.
.myBgColor { background-color: #AEBD59; }
<div style="background-color:#AEBD59">Inner text</div>
This div background color is #AEBD59.
.myBorderColor { border: 1px solid #AEBD59; }
<div style="border:3px solid #AEBD59">Div</div>
This div border color is #AEBD59.
.myOpacity80 { color: #AEBD59; opacity: 0.8; }
<p style="color:#AEBD59;opacity:0.8;">80%</p>
Text with #AEBD59 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEBD59;}
<p style="text-shadow: 3px 3px 1px #AEBD59">Text here.</p>
This text has shadow with #AEBD59 color.
.textShadow {text-shadow: 3px 3px 1px #AEBD59, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEBD59, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEBD59 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEBD59, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEBD59, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEBD59 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEBD59; -webkit-box-shadow: 1px 1px 3px 2px #AEBD59; box-shadow: 1px 1px 3px 2px #AEBD59; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEBD59; -webkit-box-shadow: 1px 1px 3px 2px #AEBD59; box-shadow:1px 1px 3px 2px #AEBD59;">
Div content here</div>
This text has color #AEBD59 on black background.
This text has color #AEBD59 on white background.
This text has black color on #AEBD59 background.
This text has white color on #AEBD59 background.