HEX: #ABC699
RGB: (171,198,153)
#ABC699 contains red, green and blue colors in about the same proportion. Web safe color of #ABC699 is #99CC99 (or #9C9).
#ABC699 color RGB value is (171,198,153).
RGB: (171,198,153) (67%,78%,60%)
R 171 of 255 = 67%
G 198 of 255 = 78%
B 153 of 255 = 60%
R + G + B ~ 68%. #ABC699 is quite light color.
R + G + B =
171 + 198 + 153 = 522 (100%)
R 171 of 522 ~ 32.76%
G 198 of 522 ~ 37.93%
B 153 of 522 ~ 29.31%
#ABC699 color CMYK value is (14,0,23,22).
CMYK: (14,0,23,22) C14M0Y23K22 (14%,0%,23%,22%) (0.14/0.00/0.23/0.22)
AB | C6 | 99 | |
---|---|---|---|
RGB | 171 | 198 | 153 |
HSL | 96° | 28.30% | 68.82% |
HSB/HSV | 96° | 22.73% | 77.65% |
CMYK | 13.64% | 0.00% | 22.73% |
22.35% |
HEX | AB | C6 | 99 |
Decimal | 171 | 198 | 153 |
Binary | 10101011 | 11000110 | 10011001 |
Octal | 253 | 306 | 231 |
Examples of css and html codes for elements with #ABC699 color. Also use rgb(171,198,153) instead hex code.
.myTextColor { color: #ABC699; }
<p style="color:#ABC699">This sample text font color is #ABC699.</p>
This text font color is #ABC699.
.myBgColor { background-color: #ABC699; }
<div style="background-color:#ABC699">Inner text</div>
This div background color is #ABC699.
.myBorderColor { border: 1px solid #ABC699; }
<div style="border:3px solid #ABC699">Div</div>
This div border color is #ABC699.
.myOpacity80 { color: #ABC699; opacity: 0.8; }
<p style="color:#ABC699;opacity:0.8;">80%</p>
Text with #ABC699 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABC699;}
<p style="text-shadow: 3px 3px 1px #ABC699">Text here.</p>
This text has shadow with #ABC699 color.
.textShadow {text-shadow: 3px 3px 1px #ABC699, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABC699, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABC699 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABC699, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABC699, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABC699 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABC699; -webkit-box-shadow: 1px 1px 3px 2px #ABC699; box-shadow: 1px 1px 3px 2px #ABC699; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABC699; -webkit-box-shadow: 1px 1px 3px 2px #ABC699; box-shadow:1px 1px 3px 2px #ABC699;">
Div content here</div>
This text has color #ABC699 on black background.
This text has color #ABC699 on white background.
This text has black color on #ABC699 background.
This text has white color on #ABC699 background.