HEX: #ABBDBD
RGB: (171,189,189)
#ABBDBD contains red, green and blue colors in about the same proportion. Web safe color of #ABBDBD is #99CCCC (or #9CC).
#ABBDBD color RGB value is (171,189,189).
RGB: (171,189,189) (67%,74%,74%)
R 171 of 255 = 67%
G 189 of 255 = 74%
B 189 of 255 = 74%
R + G + B ~ 72%. #ABBDBD is quite light color.
R + G + B =
171 + 189 + 189 = 549 (100%)
R 171 of 549 ~ 31.15%
G 189 of 549 ~ 34.43%
B 189 of 549 ~ 34.43%
#ABBDBD color CMYK value is (10,0,0,26).
CMYK: (10,0,0,26) C10M0Y0K26 (10%,0%,0%,26%) (0.10/0.00/0.00/0.26)
AB | BD | BD | |
---|---|---|---|
RGB | 171 | 189 | 189 |
HSL | 180° | 12.00% | 70.59% |
HSB/HSV | 180° | 9.52% | 74.12% |
CMYK | 9.52% | 0.00% | 0.00% |
25.88% |
HEX | AB | BD | BD |
Decimal | 171 | 189 | 189 |
Binary | 10101011 | 10111101 | 10111101 |
Octal | 253 | 275 | 275 |
Examples of css and html codes for elements with #ABBDBD color. Also use rgb(171,189,189) instead hex code.
.myTextColor { color: #ABBDBD; }
<p style="color:#ABBDBD">This sample text font color is #ABBDBD.</p>
This text font color is #ABBDBD.
.myBgColor { background-color: #ABBDBD; }
<div style="background-color:#ABBDBD">Inner text</div>
This div background color is #ABBDBD.
.myBorderColor { border: 1px solid #ABBDBD; }
<div style="border:3px solid #ABBDBD">Div</div>
This div border color is #ABBDBD.
.myOpacity80 { color: #ABBDBD; opacity: 0.8; }
<p style="color:#ABBDBD;opacity:0.8;">80%</p>
Text with #ABBDBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBDBD;}
<p style="text-shadow: 3px 3px 1px #ABBDBD">Text here.</p>
This text has shadow with #ABBDBD color.
.textShadow {text-shadow: 3px 3px 1px #ABBDBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBDBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBDBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBDBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBDBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBDBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBDBD; -webkit-box-shadow: 1px 1px 3px 2px #ABBDBD; box-shadow: 1px 1px 3px 2px #ABBDBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBDBD; -webkit-box-shadow: 1px 1px 3px 2px #ABBDBD; box-shadow:1px 1px 3px 2px #ABBDBD;">
Div content here</div>
This text has color #ABBDBD on black background.
This text has color #ABBDBD on white background.
This text has black color on #ABBDBD background.
This text has white color on #ABBDBD background.