HEX: #ABBE9A
RGB: (171,190,154)
#ABBE9A contains red, green and blue colors in about the same proportion. Web safe color of #ABBE9A is #99CC99 (or #9C9).
#ABBE9A color RGB value is (171,190,154).
RGB: (171,190,154) (67%,75%,60%)
R 171 of 255 = 67%
G 190 of 255 = 75%
B 154 of 255 = 60%
R + G + B ~ 67%. #ABBE9A is quite light color.
R + G + B =
171 + 190 + 154 = 515 (100%)
R 171 of 515 ~ 33.2%
G 190 of 515 ~ 36.89%
B 154 of 515 ~ 29.9%
#ABBE9A color CMYK value is (10,0,19,25).
CMYK: (10,0,19,25) C10M0Y19K25 (10%,0%,19%,25%) (0.10/0.00/0.19/0.25)
AB | BE | 9A | |
---|---|---|---|
RGB | 171 | 190 | 154 |
HSL | 92° | 21.69% | 67.45% |
HSB/HSV | 92° | 18.95% | 74.51% |
CMYK | 10.00% | 0.00% | 18.95% |
25.49% |
HEX | AB | BE | 9A |
Decimal | 171 | 190 | 154 |
Binary | 10101011 | 10111110 | 10011010 |
Octal | 253 | 276 | 232 |
Examples of css and html codes for elements with #ABBE9A color. Also use rgb(171,190,154) instead hex code.
.myTextColor { color: #ABBE9A; }
<p style="color:#ABBE9A">This sample text font color is #ABBE9A.</p>
This text font color is #ABBE9A.
.myBgColor { background-color: #ABBE9A; }
<div style="background-color:#ABBE9A">Inner text</div>
This div background color is #ABBE9A.
.myBorderColor { border: 1px solid #ABBE9A; }
<div style="border:3px solid #ABBE9A">Div</div>
This div border color is #ABBE9A.
.myOpacity80 { color: #ABBE9A; opacity: 0.8; }
<p style="color:#ABBE9A;opacity:0.8;">80%</p>
Text with #ABBE9A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBE9A;}
<p style="text-shadow: 3px 3px 1px #ABBE9A">Text here.</p>
This text has shadow with #ABBE9A color.
.textShadow {text-shadow: 3px 3px 1px #ABBE9A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBE9A, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBE9A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBE9A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBE9A, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBE9A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBE9A; -webkit-box-shadow: 1px 1px 3px 2px #ABBE9A; box-shadow: 1px 1px 3px 2px #ABBE9A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBE9A; -webkit-box-shadow: 1px 1px 3px 2px #ABBE9A; box-shadow:1px 1px 3px 2px #ABBE9A;">
Div content here</div>
This text has color #ABBE9A on black background.
This text has color #ABBE9A on white background.
This text has black color on #ABBE9A background.
This text has white color on #ABBE9A background.