HEX: #ABCEAA
RGB: (171,206,170)
#ABCEAA contains red, green and blue colors in about the same proportion. Web safe color of #ABCEAA is #99CC99 (or #9C9).
#ABCEAA color RGB value is (171,206,170).
RGB: (171,206,170) (67%,81%,67%)
R 171 of 255 = 67%
G 206 of 255 = 81%
B 170 of 255 = 67%
R + G + B ~ 72%. #ABCEAA is quite light color.
R + G + B =
171 + 206 + 170 = 547 (100%)
R 171 of 547 ~ 31.26%
G 206 of 547 ~ 37.66%
B 170 of 547 ~ 31.08%
#ABCEAA color CMYK value is (17,0,17,19).
CMYK: (17,0,17,19) C17M0Y17K19 (17%,0%,17%,19%) (0.17/0.00/0.17/0.19)
AB | CE | AA | |
---|---|---|---|
RGB | 171 | 206 | 170 |
HSL | 118° | 26.87% | 73.73% |
HSB/HSV | 118° | 17.48% | 80.78% |
CMYK | 16.99% | 0.00% | 17.48% |
19.22% |
HEX | AB | CE | AA |
Decimal | 171 | 206 | 170 |
Binary | 10101011 | 11001110 | 10101010 |
Octal | 253 | 316 | 252 |
Examples of css and html codes for elements with #ABCEAA color. Also use rgb(171,206,170) instead hex code.
.myTextColor { color: #ABCEAA; }
<p style="color:#ABCEAA">This sample text font color is #ABCEAA.</p>
This text font color is #ABCEAA.
.myBgColor { background-color: #ABCEAA; }
<div style="background-color:#ABCEAA">Inner text</div>
This div background color is #ABCEAA.
.myBorderColor { border: 1px solid #ABCEAA; }
<div style="border:3px solid #ABCEAA">Div</div>
This div border color is #ABCEAA.
.myOpacity80 { color: #ABCEAA; opacity: 0.8; }
<p style="color:#ABCEAA;opacity:0.8;">80%</p>
Text with #ABCEAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABCEAA;}
<p style="text-shadow: 3px 3px 1px #ABCEAA">Text here.</p>
This text has shadow with #ABCEAA color.
.textShadow {text-shadow: 3px 3px 1px #ABCEAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABCEAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABCEAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABCEAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABCEAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABCEAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABCEAA; -webkit-box-shadow: 1px 1px 3px 2px #ABCEAA; box-shadow: 1px 1px 3px 2px #ABCEAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABCEAA; -webkit-box-shadow: 1px 1px 3px 2px #ABCEAA; box-shadow:1px 1px 3px 2px #ABCEAA;">
Div content here</div>
This text has color #ABCEAA on black background.
This text has color #ABCEAA on white background.
This text has black color on #ABCEAA background.
This text has white color on #ABCEAA background.