HEX: #AABB7E
RGB: (170,187,126)
#AABB7E contains mainly red and green colors. Web safe color of #AABB7E is #99CC66 (or #9C6).
#AABB7E color RGB value is (170,187,126).
RGB: (170,187,126) (67%,73%,49%)
R 170 of 255 = 67%
G 187 of 255 = 73%
B 126 of 255 = 49%
R + G + B ~ 63%. #AABB7E is quite light color.
R + G + B =
170 + 187 + 126 = 483 (100%)
R 170 of 483 ~ 35.2%
G 187 of 483 ~ 38.72%
B 126 of 483 ~ 26.09%
#AABB7E color CMYK value is (9,0,33,27).
CMYK: (9,0,33,27) C9M0Y33K27 (9%,0%,33%,27%) (0.09/0.00/0.33/0.27)
AA | BB | 7E | |
---|---|---|---|
RGB | 170 | 187 | 126 |
HSL | 77° | 30.96% | 61.37% |
HSB/HSV | 77° | 32.62% | 73.33% |
CMYK | 9.09% | 0.00% | 32.62% |
26.67% |
HEX | AA | BB | 7E |
Decimal | 170 | 187 | 126 |
Binary | 10101010 | 10111011 | 1111110 |
Octal | 252 | 273 | 176 |
Examples of css and html codes for elements with #AABB7E color. Also use rgb(170,187,126) instead hex code.
.myTextColor { color: #AABB7E; }
<p style="color:#AABB7E">This sample text font color is #AABB7E.</p>
This text font color is #AABB7E.
.myBgColor { background-color: #AABB7E; }
<div style="background-color:#AABB7E">Inner text</div>
This div background color is #AABB7E.
.myBorderColor { border: 1px solid #AABB7E; }
<div style="border:3px solid #AABB7E">Div</div>
This div border color is #AABB7E.
.myOpacity80 { color: #AABB7E; opacity: 0.8; }
<p style="color:#AABB7E;opacity:0.8;">80%</p>
Text with #AABB7E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AABB7E;}
<p style="text-shadow: 3px 3px 1px #AABB7E">Text here.</p>
This text has shadow with #AABB7E color.
.textShadow {text-shadow: 3px 3px 1px #AABB7E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AABB7E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AABB7E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AABB7E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AABB7E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AABB7E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AABB7E; -webkit-box-shadow: 1px 1px 3px 2px #AABB7E; box-shadow: 1px 1px 3px 2px #AABB7E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AABB7E; -webkit-box-shadow: 1px 1px 3px 2px #AABB7E; box-shadow:1px 1px 3px 2px #AABB7E;">
Div content here</div>
This text has color #AABB7E on black background.
This text has color #AABB7E on white background.
This text has black color on #AABB7E background.
This text has white color on #AABB7E background.