HEX: #AABE7D
RGB: (170,190,125)
#AABE7D contains mainly red and green colors. Web safe color of #AABE7D is #99CC66 (or #9C6).
#AABE7D color RGB value is (170,190,125).
RGB: (170,190,125) (67%,75%,49%)
R 170 of 255 = 67%
G 190 of 255 = 75%
B 125 of 255 = 49%
R + G + B ~ 64%. #AABE7D is quite light color.
R + G + B =
170 + 190 + 125 = 485 (100%)
R 170 of 485 ~ 35.05%
G 190 of 485 ~ 39.18%
B 125 of 485 ~ 25.77%
#AABE7D color CMYK value is (11,0,34,25).
CMYK: (11,0,34,25) C11M0Y34K25 (11%,0%,34%,25%) (0.11/0.00/0.34/0.25)
AA | BE | 7D | |
---|---|---|---|
RGB | 170 | 190 | 125 |
HSL | 78° | 33.33% | 61.76% |
HSB/HSV | 78° | 34.21% | 74.51% |
CMYK | 10.53% | 0.00% | 34.21% |
25.49% |
HEX | AA | BE | 7D |
Decimal | 170 | 190 | 125 |
Binary | 10101010 | 10111110 | 1111101 |
Octal | 252 | 276 | 175 |
Examples of css and html codes for elements with #AABE7D color. Also use rgb(170,190,125) instead hex code.
.myTextColor { color: #AABE7D; }
<p style="color:#AABE7D">This sample text font color is #AABE7D.</p>
This text font color is #AABE7D.
.myBgColor { background-color: #AABE7D; }
<div style="background-color:#AABE7D">Inner text</div>
This div background color is #AABE7D.
.myBorderColor { border: 1px solid #AABE7D; }
<div style="border:3px solid #AABE7D">Div</div>
This div border color is #AABE7D.
.myOpacity80 { color: #AABE7D; opacity: 0.8; }
<p style="color:#AABE7D;opacity:0.8;">80%</p>
Text with #AABE7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AABE7D;}
<p style="text-shadow: 3px 3px 1px #AABE7D">Text here.</p>
This text has shadow with #AABE7D color.
.textShadow {text-shadow: 3px 3px 1px #AABE7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AABE7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AABE7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AABE7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AABE7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AABE7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AABE7D; -webkit-box-shadow: 1px 1px 3px 2px #AABE7D; box-shadow: 1px 1px 3px 2px #AABE7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AABE7D; -webkit-box-shadow: 1px 1px 3px 2px #AABE7D; box-shadow:1px 1px 3px 2px #AABE7D;">
Div content here</div>
This text has color #AABE7D on black background.
This text has color #AABE7D on white background.
This text has black color on #AABE7D background.
This text has white color on #AABE7D background.