HEX: #ABD368
RGB: (171,211,104)
#ABD368 contains mainly red and green colors. Web safe color of #ABD368 is #99CC66 (or #9C6).
#ABD368 color RGB value is (171,211,104).
RGB: (171,211,104) (67%,83%,41%)
R 171 of 255 = 67%
G 211 of 255 = 83%
B 104 of 255 = 41%
R + G + B ~ 64%. #ABD368 is quite light color.
R + G + B =
171 + 211 + 104 = 486 (100%)
R 171 of 486 ~ 35.19%
G 211 of 486 ~ 43.42%
B 104 of 486 ~ 21.4%
#ABD368 color CMYK value is (19,0,51,17).
CMYK: (19,0,51,17) C19M0Y51K17 (19%,0%,51%,17%) (0.19/0.00/0.51/0.17)
AB | D3 | 68 | |
---|---|---|---|
RGB | 171 | 211 | 104 |
HSL | 82° | 54.87% | 61.76% |
HSB/HSV | 82° | 50.71% | 82.75% |
CMYK | 18.96% | 0.00% | 50.71% |
17.25% |
HEX | AB | D3 | 68 |
Decimal | 171 | 211 | 104 |
Binary | 10101011 | 11010011 | 1101000 |
Octal | 253 | 323 | 150 |
Examples of css and html codes for elements with #ABD368 color. Also use rgb(171,211,104) instead hex code.
.myTextColor { color: #ABD368; }
<p style="color:#ABD368">This sample text font color is #ABD368.</p>
This text font color is #ABD368.
.myBgColor { background-color: #ABD368; }
<div style="background-color:#ABD368">Inner text</div>
This div background color is #ABD368.
.myBorderColor { border: 1px solid #ABD368; }
<div style="border:3px solid #ABD368">Div</div>
This div border color is #ABD368.
.myOpacity80 { color: #ABD368; opacity: 0.8; }
<p style="color:#ABD368;opacity:0.8;">80%</p>
Text with #ABD368 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABD368;}
<p style="text-shadow: 3px 3px 1px #ABD368">Text here.</p>
This text has shadow with #ABD368 color.
.textShadow {text-shadow: 3px 3px 1px #ABD368, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABD368, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABD368 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABD368, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABD368, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABD368 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABD368; -webkit-box-shadow: 1px 1px 3px 2px #ABD368; box-shadow: 1px 1px 3px 2px #ABD368; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABD368; -webkit-box-shadow: 1px 1px 3px 2px #ABD368; box-shadow:1px 1px 3px 2px #ABD368;">
Div content here</div>
This text has color #ABD368 on black background.
This text has color #ABD368 on white background.
This text has black color on #ABD368 background.
This text has white color on #ABD368 background.