HEX: #ABAB00
RGB: (171,171,0)
#ABAB00 contains only red and green colors. Web safe color of #ABAB00 is #999900 (or #990).
#ABAB00 color RGB value is (171,171,0).
RGB: (171,171,0)
(67%, 67%, 0%)
R 171 of 255 = 67%
G 171 of 255 = 67%
B 0 of 255 = 0%
R + G + B ~ 45%. #ABAB00 is middle color (not dark and not light).
R + G + B = 171 + 171 + 0 = 342 (100%)
R 171 of 342 ~ 50%
G 171 of 342 ~ 50%
B 0 of 342 ~ 0'%
#ABAB00 color CMYK value is (0,0,100,33).
CMYK: (0,0,100,33)
C0M0Y100K33 (0%, 0%, 100%, 33%)
(0.00 / 0.00 / 1.00 / 0.33)
Color #ABAB00 in popluar color models
AB | AB | 00 | |
---|---|---|---|
RGB | 171 | 171 | 0 |
HSL | 60° | 100.00% | 33.53% |
HSB/HSV | 60° | 100.00% | 67.06% |
CMYK | 0.00% | 0.00% | 100.00% |
32.94% |
Color #ABAB00 in popluar number systems.
HEX | AB | AB | 00 |
Decimal | 171 | 171 | 0 |
Binary | 10101011 | 10101011 | 0 |
Octal | 253 | 253 | 0 |
Shades of #ABAB00
Tints of #ABAB00
Examples of css and html codes for elements with #ABAB00 color. Also use rgb(171,171,0) instead hex code.
.myTextColor { color: #ABAB00; }
<p style="color:#ABAB00">This sample text font color is #ABAB00.</p>
This text font color is #ABAB00.
.myBgColor { background-color: #ABAB00; }
<div style="background-color:#ABAB00">Inner text</div>
This div background color is #ABAB00.
.myBorderColor { border: 1px solid #ABAB00; }
<div style="border:3px solid #ABAB00">Div</div>
This div border color is #ABAB00.
.myOpacity80 { color: #ABAB00; opacity: 0.8; }
<p style="color:#ABAB00;opacity:0.8;">80%</p>
Text with #ABAB00 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABAB00;}
<p style="text-shadow: 3px 3px 1px #ABAB00">Text here.</p>
This text has shadow with #ABAB00 color.
.textShadow {text-shadow: 3px 3px 1px #ABAB00', 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABAB00, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABAB00 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABAB00, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABAB00, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABAB00 and red colors in old Internet Explorer.
/* css code */
.divShadow
{
-moz-box-shadow: 1px 1px 3px 2px #ABAB00;
-webkit-box-shadow: 1px 1px 3px 2px #ABAB00;
box-shadow: 1px 1px 3px 2px #ABAB00;
}
/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #ABAB00; -webkit-box-shadow: 1px 1px 3px 2px #ABAB00; box-shadow:1px 1px 3px 2px #ABAB00;">
Div content here
</div>
This text has color #ABAB00 on black background.
This text has color #ABAB00 on white background.
This text has black color on #ABAB00 background.
This text has white color on #ABAB00 background.